You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

28 lines
869 B

class WithdrawData {
num? withdrawAmount;
num? withdrawServiceFeePct;
num? withdrawServiceFee;
num? arrivalAmount;
WithdrawData(
{this.withdrawAmount,
this.withdrawServiceFeePct,
this.withdrawServiceFee,
this.arrivalAmount});
WithdrawData.fromJson(Map<String, dynamic> json) {
withdrawAmount = json['withdrawAmount'];
withdrawServiceFeePct = json['withdrawServiceFeePct'];
withdrawServiceFee = json['withdrawServiceFee'];
arrivalAmount = json['arrivalAmount'];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['withdrawAmount'] = this.withdrawAmount;
data['withdrawServiceFeePct'] = this.withdrawServiceFeePct;
data['withdrawServiceFee'] = this.withdrawServiceFee;
data['arrivalAmount'] = this.arrivalAmount;
return data;
}
}