onResonse method
Implementation
@override
List<AptosGraphQLTokenCollection> onResonse(Map<String, dynamic> result) {
return result
.asListOfMap("current_token_datas_v2")!
.map((e) => AptosGraphQLTokenCollection.fromJson(e))
.toList();
}