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