listMissingBlobs method

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

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