start_timestamp property

num? get start_timestamp

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

Implementation

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

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

Implementation

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