fromJson static method
Inherited by: BotCommandScopeAllChatAdministrators BotCommandScopeAllGroupChats BotCommandScopeAllPrivateChats BotCommandScopeChat BotCommandScopeChatAdministrators BotCommandScopeChatMember BotCommandScopeDefault
Implementation
static BotCommandScopeAllChatAdministrators? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return const BotCommandScopeAllChatAdministrators();
}