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