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