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