UpdateChatAction constructor

const UpdateChatAction({
  1. required int chatId,
  2. required int messageThreadId,
  3. required MessageSender senderId,
  4. required ChatAction action,
  5. dynamic extra,
  6. int? clientId,
})

A message sender activity in the chat has changed

Implementation

const UpdateChatAction({
  required this.chatId,
  required this.messageThreadId,
  required this.senderId,
  required this.action,
  this.extra,
  this.clientId,
});