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