count method

Future<int> count({
  1. required String table,
  2. Object? where,
  3. Object? params,
})

Implementation

Future<int> count({required String table, Object? where, Object? params}) {
  return client.count(database: database, table: table, where: where, params: params, namespace: namespace);
}