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