any method

Future<bool> any()

Check if any records match

Implementation

Future<bool> any() async {
  final count = await countSql();
  return count > 0;
}