Group(- {required String name,
- required String id,
- String? description,
- required User leader,
- String? website,
- String? ircServer,
- String? ircChannel,
- String? discord,
- String? contactEmail,
- required String createdAt,
- required String updatedAt,
- required bool isLocked,
- List<User>? members}
)
Implementation
Group(
{required this.name,
required this.id,
this.description,
required this.leader,
this.website,
this.ircServer,
this.ircChannel,
this.discord,
this.contactEmail,
required this.createdAt,
required this.updatedAt,
required this.isLocked,
this.members});