is_secret property

bool? get is_secret

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

Implementation

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

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

Implementation

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