chatTypeSupergroup property

ChatTypeSupergroup? chatTypeSupergroup

A supergroup or channel (with unlimited members)

Implementation

ChatTypeSupergroup? get chatTypeSupergroup {
  if (this is ChatTypeSupergroup) {
    return this as ChatTypeSupergroup;
  }
  return null;
}