getRepo method

Future<XRPCResponse<Uint8List>> getRepo({
  1. required String did,
  2. String? since,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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,
);