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