updateChatAction property

UpdateChatAction? updateChatAction

A message sender activity in the chat has changed

Implementation

UpdateChatAction? get updateChatAction {
  if (this is UpdateChatAction) {
    return this as UpdateChatAction;
  }
  return null;
}