getRepo method
Download a repository export as CAR file. Optionally only a 'diff' since a previous revision. Does not require auth; implemented by PDS.
Implementation
Future<XRPCResponse<Uint8List>> getRepo({
required String did,
String? since,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoSyncGetRepo(
did: did,
since: since,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);