Group class
Represents a group within the chat.
This class extends AppEntity and adds additional properties specifically related to a group, such as the guid, owner, name, icon, description, metadata, joined status, members count, creation time, join time, update time, tags, type, scope, and password. It also includes a boolean flag to determine if the user is banned from the group.
Constructors
-
Group({required String guid, String owner = '', required String name, String? icon, String? description, bool hasJoined = false, int membersCount = 0, DateTime? createdAt, DateTime? joinedAt, DateTime? updatedAt, Map<
String, dynamic> ? metadata, List<String> tags = const [], required String type, String? scope, String? password, bool? isBannedFromGroup}) -
Constructs a new
Group
instance. - Group.fromMap(dynamic map)
-
Creates a new
Group
instance from a map.factory
Properties
- createdAt ↔ DateTime?
-
getter/setter pair
- description ↔ String?
-
getter/setter pair
- guid ↔ String
-
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- hasJoined ↔ bool
-
getter/setter pair
- icon ↔ String?
-
getter/setter pair
- isBannedFromGroup ↔ bool?
-
getter/setter pair
- joinedAt ↔ DateTime?
-
getter/setter pair
- membersCount ↔ int
-
getter/setter pair
-
metadata
↔ Map<
String, dynamic> ? -
getter/setter pair
- name ↔ String
-
getter/setter pair
- owner ↔ String
-
getter/setter pair
- password ↔ String?
-
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- scope ↔ String?
-
getter/setter pair
-
getter/setter pair
- type ↔ String
-
getter/setter pair
- updatedAt ↔ DateTime?
-
getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
Generates a map representing the
Group
. -
toMap(
) → Map< String, dynamic> -
Generates a map of the
Group
. -
toString(
) → String -
Generates a string representation of the
Group
.override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited