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