describeRepo method

Future<XRPCResponse<RepoDescribeRepoOutput>> describeRepo({
  1. required String repo,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Get information about an account and repository, including the list of collections. Does not require auth.

Implementation

Future<XRPCResponse<RepoDescribeRepoOutput>> describeRepo({
  required String repo,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoRepoDescribeRepo(
  repo: repo,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);