ApiMessageResponse constructor

ApiMessageResponse({
  1. required int skip,
  2. required int take,
  3. required List<ApiListMessageResponse>? messages,
  4. List<ApiUserRoomResponse>? users,
  5. String? lastReadMessageId,
  6. String? userSendLastRead,
  7. String? lastReadMessageTimeSend,
  8. String? messageId,
  9. String? message,
  10. String? textSearch,
  11. int? totalCountFinded,
})

Implementation

ApiMessageResponse({
  required this.skip,
  required this.take,
  required this.messages,
  this.users,
  this.lastReadMessageId,
  this.userSendLastRead,
  this.lastReadMessageTimeSend,
  this.messageId,
  this.message,
  this.textSearch,
  this.totalCountFinded,
});