MFRecurringInvoice.fromJson constructor

MFRecurringInvoice.fromJson(
  1. Map<String, dynamic> json
)

Implementation

MFRecurringInvoice.fromJson(Map<String, dynamic> json) {
  invoiceId = json['InvoiceId'];
  customerReference = json['CustomerReference'];
  customerName = json['CustomerName'];
  customerMobile = json['CustomerMobile'];
  createdDate = json['CreatedDate'];
  invoiceStatus = json['InvoiceStatus'];
}