chatEventInvitesToggled property

ChatEventInvitesToggled? chatEventInvitesToggled

The can_invite_users permission of a supergroup chat was toggled

Implementation

ChatEventInvitesToggled? get chatEventInvitesToggled {
  if (this is ChatEventInvitesToggled) {
    return this as ChatEventInvitesToggled;
  }
  return null;
}