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