listRecords method

Future<XRPCResponse<Records>> listRecords({
  1. required String repo,
  2. required NSID collection,
  3. int? limit,
  4. bool? reverse,
  5. String? rkeyStart,
  6. String? rkeyEnd,
  7. String? cursor,
})

Implementation

Future<core.XRPCResponse<Records>> listRecords({
  required String repo,
  required core.NSID collection,
  int? limit,
  bool? reverse,
  String? rkeyStart,
  String? rkeyEnd,
  String? cursor,
}) async =>
    // ignore: deprecated_member_use_from_same_package
    await findRecords(
      repo: repo,
      collection: collection,
      limit: limit,
      reverse: reverse,
      rkeyStart: rkeyStart,
      rkeyEnd: rkeyEnd,
      cursor: cursor,
    );