utc_time_offset property

num? get utc_time_offset

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

num? get utc_time_offset {
  try {
    if (rawData["utc_time_offset"] is num == false) {
      return null;
    }
    return rawData["utc_time_offset"] as num;
  } catch (e) {
    return null;
  }
}
set utc_time_offset (num? value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set utc_time_offset(num? value) {
  rawData["utc_time_offset"] = value;
}