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