GroupModel constructor

GroupModel({
  1. String? id,
  2. required String name,
  3. required DateTime createdAt,
  4. GroupCountModel? count,
  5. List<ContactModel>? contacts,
})

Implementation

GroupModel({
  this.id,
  required this.name,
  required this.createdAt,
  this.count,
  this.contacts,
});