comAtprotoSyncListBlobs function
List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS.
Implementation
Future<XRPCResponse<SyncListBlobsOutput>> comAtprotoSyncListBlobs({
required String did,
String? since,
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.comAtprotoSyncListBlobs,
headers: $headers,
parameters: {
...?$unknown,
'did': did,
if (since != null) 'since': since,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const SyncListBlobsOutputConverter().fromJson,
);