listMissingBlobs method

Future<XRPCResponse<RepoListMissingBlobsOutput>> listMissingBlobs({
  1. int? limit,
  2. String? cursor,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Returns a list of missing blobs for the requesting account. Intended to be used in the account migration flow.

Implementation

Future<XRPCResponse<RepoListMissingBlobsOutput>> listMissingBlobs({
  int? limit,
  String? cursor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoRepoListMissingBlobs(
  limit: limit,
  cursor: cursor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);