comAtprotoRepoListMissingBlobs function
Returns a list of missing blobs for the requesting account. Intended to be used in the account migration flow.
Implementation
Future<XRPCResponse<RepoListMissingBlobsOutput>>
comAtprotoRepoListMissingBlobs({
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.comAtprotoRepoListMissingBlobs,
headers: $headers,
parameters: {
...?$unknown,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const RepoListMissingBlobsOutputConverter().fromJson,
);