count method
Count records.
Implementation
Future<int> count(
SdbClient client, {
SdbBoundaries<K>? boundaries,
/// New API, supersedes the other parameters
SdbFindOptions<K>? options,
}) => impl.countImpl(
client,
options: sdbFindOptionsMerge(options, boundaries: boundaries),
);