toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['amount'] = this.amount;
data['deliveryUrl'] = this.deliveryUrl;
data['merchantCode'] = this.merchantCode;
data['merchantName'] = this.merchantName;
data['merchantUrl'] = this.merchantUrl;
data['module'] = this.module;
data['password'] = this.password;
data['refId'] = this.refId;
data['customerName'] = this.customerName;
data['user'] = this.user;
data['logo'] = this.logo;
return data;
}