describeRepo method
Implementation
Future<core.XRPCResponse<RepoInfo>> describeRepo({
required String repo,
Map<String, String>? headers,
}) async =>
await _ctx.get(
ns.comAtprotoRepoDescribeRepo,
headers: headers,
parameters: {
'repo': repo,
},
to: RepoInfo.fromJson,
);