any method

Future<bool> any({
  1. Filter filter = Filter.empty,
})

Checks if there are any entries that match the filter.

Implementation

Future<bool> any({
  Filter filter = Filter.empty,
}) async {
  return await transaction(
    (context) async {
      return await context.any(bean, filter: filter);
    },
  );
}