SEP24DepositAsset.fromJson constructor

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

Implementation

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