self_destruct_in property

double? get self_destruct_in

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

Implementation

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

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

Implementation

set self_destruct_in(double? value) {
  rawData["self_destruct_in"] = value;
}