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