toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['Msisdn'] = this.msisdn;
  data['otp'] = this.otp;
  data['responseCode'] = this.responseCode;
  data['responseDescription'] = this.responseDescription;
  data['signature'] = this.signature;
  data['refId'] = this.refId;
  data['merchantCode'] = this.merchantCode;
  data['AccCode'] = this.accCode;
  data['tokenId'] = this.tokenId;
  data['TranId'] = this.transactionId;
  data['uniqueCode'] = this.uniqueCode;
  return data;
}