listReposByCollection method

Future<XRPCResponse<SyncListReposByCollectionOutput>> listReposByCollection({
  1. required String collection,
  2. int? limit,
  3. String? cursor,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Enumerates all the DIDs which have records with the given collection NSID.

Implementation

Future<XRPCResponse<SyncListReposByCollectionOutput>> listReposByCollection({
  required String collection,
  int? limit,
  String? cursor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoSyncListReposByCollection(
  collection: collection,
  limit: limit,
  cursor: cursor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);