SEP24WithdrawAsset.fromJson constructor Null safety

SEP24WithdrawAsset.fromJson(
  1. Map<String, dynamic> json
)

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']));
}