toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['proUniqueId'] = this.proUniqueId;
  data['commissionId'] = this.commissionId;
  data['price'] = this.price;
  data['pictureUrl'] = this.pictureUrl;
  data['currency'] = this.currency;
  data['title'] = this.title;
  data['key'] = this.key;
  data['merchantName'] = this.merchantName;
  data['description'] = this.description;
  data['cancelTimeUpTo'] = this.cancelTimeUpTo;
  data['callDuration'] = this.callDuration;
  return data;
}