MessageReadDateRead constructor

const MessageReadDateRead({
  1. required int readDate,
  2. dynamic extra,
  3. int? clientId,
})

MessageReadDateRead (messageReadDateRead) - child of MessageReadDate

Contains read date of the message.

  • readDate: Point in time (Unix timestamp) when the message was read by the other user.

Implementation

const MessageReadDateRead({
  required this.readDate,
  this.extra,
  this.clientId,
});