whereNotExists abstract method

QueryBuilderInterface<T> whereNotExists(
  1. String callback(
    1. QueryBuilderInterface query
    )
)

WHERE NOT EXISTS (subquery)

Implementation

QueryBuilderInterface<T> whereNotExists(
  String Function(QueryBuilderInterface<dynamic> query) callback,
);