ChatContact constructor
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);