toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() => {
      "dateTime": dateTime == null ? null : dateTime,
      "agentCode": agentCode == null ? null : agentCode,
      "channelCode": channelCode == null ? null : channelCode,
      "data": data == null ? null : data,
      "interestType": interestType == null ? null : interestType,
      "interestRate": interestRate == null ? null : interestRate,
      "monthlyAmount": monthlyAmount == null ? null : monthlyAmount,
      "installmentPeriod": installmentPeriod == null ? null : installmentPeriod,
      "amount": amount == null ? null : amount,
      "currencyCode": currencyCode == null ? null : currencyCode,
      "invoiceNo": invoiceNo == null ? null : invoiceNo,
      "productDescription": productDescription == null ? null : productDescription,
    };