UpdateChannelUserTyping constructor

const UpdateChannelUserTyping({
  1. required int channelId,
  2. int? topMsgId,
  3. required PeerBase fromId,
  4. required SendMessageActionBase action,
})

Update Channel User Typing constructor.

Implementation

const UpdateChannelUserTyping({
  required this.channelId,
  this.topMsgId,
  required this.fromId,
  required this.action,
}) : super._();