onResonse method

  1. @override
List<AptosGraphQLCollectionV2> onResonse(
  1. Map<String, dynamic> result
)
override

Implementation

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