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