listRepos method

Future<XRPCResponse<SyncListReposOutput>> listRepos({
  1. int? limit,
  2. String? cursor,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Enumerates all the DID, rev, and commit CID for all repos hosted by this service. Does not require auth; implemented by PDS and Relay.

Implementation

Future<XRPCResponse<SyncListReposOutput>> listRepos({
  int? limit,
  String? cursor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoSyncListRepos(
  limit: limit,
  cursor: cursor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);