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