Group constructor

Group({
  1. String id = '',
  2. required String name,
  3. required String description,
  4. required String imageURL,
  5. required List<User> userList,
})

Implementation

Group({
  this.id = '',
  required this.name,
  required this.description,
  required this.imageURL,
  required this.userList,
});