toMap method
Implementation
@override
Map<String, dynamic> toMap() {
Map<String, Object> hashMap = Map();
hashMap[FIELD_ADDRESS] = address??"";
hashMap[FIELD_AMOUNT_CHARGED] = amountCharged??"";
hashMap[FIELD_AMOUNT_RECEIVED] = amountReceived??"";
hashMap[FIELD_AMOUNT_RETURNED] = amountReturned??"";
return hashMap;
}