none method

NoneExpression none([
  1. Expression where(
    1. T
    )?
])

Returns all models where none of the related models match filtering criteria.

Implementation

NoneExpression none([Expression Function(T)? where]) {
  return NoneExpression(
    ColumnCount(where?.call(_table), _tableWithRelations.id),
  );
}