toolsOzoneModerationGetRepo function

Future<XRPCResponse<RepoViewDetail>> toolsOzoneModerationGetRepo({
  1. required String did,
  2. required ServiceContext $ctx,
  3. String? $service,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Get details about a repository.

Implementation

Future<XRPCResponse<RepoViewDetail>> toolsOzoneModerationGetRepo({
  required String did,
  required ServiceContext $ctx,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.toolsOzoneModerationGetRepo,
  service: $service,
  headers: $headers,
  parameters: {...?$unknown, 'did': did},
  to: const RepoViewDetailConverter().fromJson,
);