ChatLists constructor

const ChatLists({
  1. required List<ChatList> chatLists,
  2. dynamic extra,
  3. int? clientId,
})

Contains a list of chat lists

Implementation

const ChatLists({
  required this.chatLists,
  this.extra,
  this.clientId,
});