listRecords method
List a range of records in a repository, matching a specific collection. Does not require auth.
Implementation
Future<XRPCResponse<RepoListRecordsOutput>> listRecords({
required String repo,
required String collection,
int? limit,
String? cursor,
bool? reverse,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoRepoListRecords(
repo: repo,
collection: collection,
limit: limit,
cursor: cursor,
reverse: reverse,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);