Chats constructor

const Chats({
  1. required int totalCount,
  2. required List<int> chatIds,
  3. dynamic extra,
  4. int? clientId,
})

Represents a list of chats

Implementation

const Chats({
  required this.totalCount,
  required this.chatIds,
  this.extra,
  this.clientId,
});