describeRepo method

Future<XRPCResponse<RepoInfo>> describeRepo({
  1. required String repo,
  2. Map<String, String>? headers,
})

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,
    );