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