WithdrawResponse.fromJson constructor
Implementation
factory WithdrawResponse.fromJson(Map<String, dynamic> json) =>
WithdrawResponse(
json['account_id'],
json['memo_type'],
json['memo'],
json['id'],
convertInt(json['eta']),
convertDouble(json['min_amount']),
convertDouble(json['max_amount']),
convertDouble(json['fee_fixed']),
convertDouble(json['fee_percent']),
json['extra_info'] == null
? null
: ExtraInfo.fromJson(json['extra_info']));