has_protected_content property
bool?
get
has_protected_content
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
bool? get has_protected_content {
try {
if (rawData["has_protected_content"] is bool == false) {
return null;
}
return rawData["has_protected_content"] as bool;
} catch (e) {
return null;
}
}
set
has_protected_content
(bool? value)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set has_protected_content(bool? value) {
rawData["has_protected_content"] = value;
}