ChatContact constructor

ChatContact(
  1. ChatContactId id, {
  2. required UserName name,
  3. List<User>? users,
  4. List<Chat>? groups,
  5. List<UserPhone>? phones,
  6. List<UserEmail>? emails,
  7. ChatContactFavoritePosition? favoritePosition,
})

Implementation

ChatContact(
  this.id, {
  required this.name,
  List<User>? users,
  List<Chat>? groups,
  List<UserPhone>? phones,
  List<UserEmail>? emails,
  this.favoritePosition,
}) : users = users ?? List.empty(growable: true),
     groups = groups ?? List.empty(growable: true),
     phones = phones ?? List.empty(growable: true),
     emails = emails ?? List.empty(growable: true);