toJson method
Creates a json from the object
Implementation
Map toJson() {
return {
'id': id,
'from': from,
'invoice_payload': invoicePayload,
'shipping_address': shippingAddress,
}..removeWhere((_, v) => v == null);
}
Creates a json from the object
Map toJson() {
return {
'id': id,
'from': from,
'invoice_payload': invoicePayload,
'shipping_address': shippingAddress,
}..removeWhere((_, v) => v == null);
}