GroupModel constructor
GroupModel({
- String? id,
- required String name,
- required DateTime createdAt,
- GroupCountModel? count,
- List<
ContactModel> ? contacts,
Implementation
GroupModel({
this.id,
required this.name,
required this.createdAt,
this.count,
this.contacts,
});