only_current property

bool? get only_current

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

Implementation

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

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

Implementation

set only_current(bool? value) {
  rawData["only_current"] = value;
}