describeRepo method
Get information about an account and repository, including the list of collections. Does not require auth.
Implementation
Future<XRPCResponse<RepoDescribeRepoOutput>> describeRepo({
required String repo,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoRepoDescribeRepo(
repo: repo,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);