comAtprotoRepoDescribeRepo function
Get information about an account and repository, including the list of collections. Does not require auth.
Implementation
Future<XRPCResponse<RepoDescribeRepoOutput>> comAtprotoRepoDescribeRepo({
required String repo,
required ServiceContext $ctx,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.comAtprotoRepoDescribeRepo,
service: $service,
headers: $headers,
parameters: {...?$unknown, 'repo': repo},
to: const RepoDescribeRepoOutputConverter().fromJson,
);