countSql method

Future<int> countSql()

Count matching records

Implementation

Future<int> countSql() async {
  final sql = _buildCountSql();
  return repository.executeCount(sql, _params);
}