Group constructor
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,
Implementation
Group(
{required this.guid,
this.owner = '',
required this.name,
this.icon,
this.description,
this.hasJoined = false,
this.membersCount = 0,
this.createdAt,
this.joinedAt,
this.updatedAt,
this.metadata,
this.tags = const [],
required this.type,
this.scope,
this.password});