has_sensitive_content property

bool? get has_sensitive_content

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

Implementation

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

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

Implementation

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