UpdateChannelReadMessagesContents constructor

const UpdateChannelReadMessagesContents({
  1. required int channelId,
  2. int? topMsgId,
  3. required List<int> messages,
})

Update Channel Read Messages Contents constructor.

Implementation

const UpdateChannelReadMessagesContents({
  required this.channelId,
  this.topMsgId,
  required this.messages,
}) : super._();