exclude_read property

bool? get exclude_read

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

Implementation

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

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

Implementation

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