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