MessageReplies constructor

const MessageReplies({
  1. required bool comments,
  2. required int replies,
  3. required int repliesPts,
  4. List<PeerBase>? recentRepliers,
  5. int? channelId,
  6. int? maxId,
  7. int? readMaxId,
})

Message Replies constructor.

Implementation

const MessageReplies({
  required this.comments,
  required this.replies,
  required this.repliesPts,
  this.recentRepliers,
  this.channelId,
  this.maxId,
  this.readMaxId,
}) : super._();