MessageReadStatusDto constructor

MessageReadStatusDto({
  1. int? time,
  2. bool read = false,
})

Returns a new MessageReadStatusDto instance.

Implementation

MessageReadStatusDto({
  this.time,
  this.read = false,
});