collections method

Future<MixinResponse<CollectibleCollection>> collections(
  1. String collectionId
)

Implementation

Future<MixinResponse<CollectibleCollection>> collections(
        String collectionId) =>
    MixinResponse.request<CollectibleCollection>(
      dio.get('/collectibles/collections/$collectionId'),
      CollectibleCollection.fromJson,
    );