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