1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/models/friend_status.dart
2022-03-11 17:13:54 +01:00

22 lines
469 B
Dart

/// Simple friendship status
///
/// @author Pierre HUBERT
class FriendStatus {
final int userID;
final bool areFriend;
final bool sentRequest;
final bool receivedRequest;
final bool following;
const FriendStatus({
required this.userID,
required this.areFriend,
required this.sentRequest,
required this.receivedRequest,
required this.following,
});
bool get noRequestExchanged => !areFriend && !sentRequest && !receivedRequest;
}