importRepo method
Import a repo in the form of a CAR file. Requires Content-Length HTTP header to be set.
Implementation
Future<XRPCResponse<EmptyData>> importRepo({
required Uint8List bytes,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $parameters,
}) async => await comAtprotoRepoImportRepo(
bytes: bytes,
$parameters: $parameters,
$ctx: ctx,
$service: $service,
$headers: $headers,
);