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,
Map<String, String>? $headers,
Map<String, String>? $parameters,
}) async => await comAtprotoRepoImportRepo(
bytes: bytes,
$parameters: $parameters,
$ctx: _ctx,
$headers: $headers,
);