ApiMessageResponse constructor

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

Implementation

ApiMessageResponse({
  this.skip = 0,
  this.take = 10,
  this.messages = const [],
  this.users = const [],
  this.lastReadMessageId = '',
  this.userSendLastRead = '',
  this.lastReadMessageTimeSend = '',
  this.messageId = '',
  this.message = '',
  this.textSearch = '',
  this.totalCountFinded = 0,
});