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