count method

Future<int> count(
  1. SdbClient client, {
  2. SdbBoundaries<I>? boundaries,
  3. SdbFindOptions<I>? options,
})

Count records with this index key

Implementation

Future<int> count(
  SdbClient client, {
  SdbBoundaries<I>? boundaries,

  /// New api supersede other param
  ///
  SdbFindOptions<I>? options,
}) => impl.countImpl(
  client,
  options: sdbFindOptionsMerge(options, boundaries: boundaries),
);