cryptocurrency_amount property

num? get cryptocurrency_amount

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

Implementation

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

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

Implementation

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