UpdateUserTyping constructor

const UpdateUserTyping({
  1. required int userId,
  2. int? topMsgId,
  3. required SendMessageActionBase action,
})

Update User Typing constructor.

Implementation

const UpdateUserTyping({
  required this.userId,
  this.topMsgId,
  required this.action,
}) : super._();