DepositResponse.fromJson constructor Null safety
Implementation
factory DepositResponse.fromJson(Map<String, dynamic> json) => DepositResponse(
json['how'],
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']));