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