bot_command_scope_chat property
BotCommandScopeChat
get
bot_command_scope_chat
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
BotCommandScopeChat get bot_command_scope_chat {
try {
if (rawData["bot_command_scope_chat"] is Map == false) {
return BotCommandScopeChat({});
}
return BotCommandScopeChat(rawData["bot_command_scope_chat"] as Map);
} catch (e) {
return BotCommandScopeChat({});
}
}
set
bot_command_scope_chat
(BotCommandScopeChat value)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set bot_command_scope_chat(BotCommandScopeChat value) {
rawData["bot_command_scope_chat"] = value.toJson();
}