triggerChatUpdated method

void triggerChatUpdated(
  1. Chat chat
)

Implementation

void triggerChatUpdated(Chat chat) {
  if (onChatUpdated != null) {
    onChatUpdated!(chat);
  }
}