toMap static method
Implementation
static Map<String, dynamic> toMap(BoraPushTransaction model) =>
<String, dynamic> {
'id' : model.id,
'status' : model.status,
'merchantRequestID' : model.merchantRequestID,
'checkoutRequestID' : model.checkoutRequestID,
'resultCode' : model.resultCode,
'resultDesc' : model.resultDesc,
'responseDescription' : model.responseDescription,
'customerMessage' : model.customerMessage,
'amount' : model.amount,
'mpesaReceiptNumber' : model.mpesaReceiptNumber,
'dateAdded' : model.dateAdded,
'dateModified' : model.dateModified,
};