listMissingBlobs method

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

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

https://atprotodart.com/docs/lexicons/com/atproto/repo/listMissingBlobs

Implementation

Future<XRPCResponse<ListMissingBlobsOutput>> listMissingBlobs({
  int? limit,
  String? cursor,
  Map<String, String>? $unknown,
  Map<String, String>? $headers,
  GetClient? $client,
}) async =>
    await _ctx.get<ListMissingBlobsOutput>(
      ns.comAtprotoRepoListMissingBlobs,
      headers: $headers,
      parameters: {
        if (limit != null) 'limit': limit.toString(),
        if (cursor != null) 'cursor': cursor,
        ...?$unknown,
      },
      to: const ListMissingBlobsOutputConverter().fromJson,
      client: $client,
    );