cache_time property

num? get cache_time

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

Implementation

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

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

Implementation

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