only_preview property

bool? get only_preview

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

Implementation

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

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

Implementation

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