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