listMissingBlobs method
Implementation
Future<core.XRPCResponse<MissingBlobs>> listMissingBlobs({
int? limit,
String? cursor,
Map<String, String>? headers,
}) async =>
await _ctx.get(
ns.comAtprotoRepoListMissingBlobs,
headers: headers,
parameters: {
'limit': limit,
'cursor': cursor,
},
to: MissingBlobs.fromJson,
);