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