toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (disbursementAmount != null)
        'disbursementAmount': disbursementAmount!,
      if (disbursementCreationDate != null)
        'disbursementCreationDate': disbursementCreationDate!,
      if (disbursementDate != null) 'disbursementDate': disbursementDate!,
      if (disbursementId != null) 'disbursementId': disbursementId!,
      if (merchantId != null) 'merchantId': merchantId!,
      if (merchantOrderId != null) 'merchantOrderId': merchantOrderId!,
      if (orderId != null) 'orderId': orderId!,
      if (productAmount != null) 'productAmount': productAmount!,
      if (transactionDate != null) 'transactionDate': transactionDate!,
    };