MessageRoomDto constructor

MessageRoomDto({
  1. int? relation,
  2. String? category,
  3. int? roomId,
  4. int? requester,
  5. int? corresponder,
  6. DateTime? requestedTime,
  7. DateTime? correspondedTime,
  8. bool? published,
  9. int? unread,
})

Implementation

MessageRoomDto({
  this.relation,
  this.category,
  this.roomId,
  this.requester,
  this.corresponder,
  this.requestedTime,
  this.correspondedTime,
  this.published,
  this.unread,
});