SEP24WithdrawAsset.fromJson constructor
Implementation
factory SEP24WithdrawAsset.fromJson(Map<String, dynamic> json) {
return SEP24WithdrawAsset(
json['enabled'],
convertDouble(json['min_amount']),
convertDouble(json['max_amount']),
convertDouble(json['fee_fixed']),
convertDouble(json['fee_percent']),
convertDouble(json['fee_minimum']));
}