updateNewChat property

UpdateNewChat? updateNewChat

A new chat has been loaded/created. This update is guaranteed to come before the chat identifier is returned to the application. The chat field changes will be reported through separate updates

Implementation

UpdateNewChat? get updateNewChat {
  if (this is UpdateNewChat) {
    return this as UpdateNewChat;
  }
  return null;
}