listBlobs method
List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS.
Implementation
Future<XRPCResponse<SyncListBlobsOutput>> listBlobs({
required String did,
String? since,
int? limit,
String? cursor,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoSyncListBlobs(
did: did,
since: since,
limit: limit,
cursor: cursor,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);