onResonse method
Converts a dynamic response to the generic type T
.
Implementation
@override
List<AccountBalancePairResponse> onResonse(result) {
return (result as List)
.map((e) => AccountBalancePairResponse.fromJson(e))
.toList();
}