show_preview property

bool? get show_preview

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

Implementation

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

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

Implementation

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