getRepo method
Get details about a repository.
https://atprotodart.com/docs/lexicons/tools/ozone/moderation/getRepo
Implementation
Future<XRPCResponse<RepoViewDetail>> getRepo({
required String did,
Map<String, String>? $unknown,
Map<String, String>? $headers,
GetClient? $client,
}) async =>
await _ctx.get<RepoViewDetail>(
ns.toolsOzoneModerationGetRepo,
headers: $headers,
parameters: {
'did': did,
...?$unknown,
},
to: const RepoViewDetailConverter().fromJson,
client: $client,
);