whereNotExists method

  1. @override
QueryBuilder whereNotExists(
  1. QueryCallback callback, {
  2. String boolean = 'and',
})
inherited

Implementation

@override
QueryBuilder whereNotExists(
  QueryCallback callback, {
  String boolean = 'and',
}) {
  return whereExists(callback, boolean: boolean, not: true);
}