botCommandScopeAllChatAdministrators property

BotCommandScopeAllChatAdministrators? botCommandScopeAllChatAdministrators

A scope covering all group and supergroup chat administrators

Implementation

BotCommandScopeAllChatAdministrators?
    get botCommandScopeAllChatAdministrators {
  if (this is BotCommandScopeAllChatAdministrators) {
    return this as BotCommandScopeAllChatAdministrators;
  }
  return null;
}