count method

Future<int> count(
  1. DatabaseClient client
)

count records.

Implementation

Future<int> count(DatabaseClient client) async =>
    (await getSnapshots(client)).length;