allow_write_access property

bool? get allow_write_access

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

Implementation

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

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

Implementation

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