whereNull method

  1. @override
QueryBuilder whereNull(
  1. String column, {
  2. String boolean = 'and',
  3. bool not = false,
})
inherited

Implementation

@override
QueryBuilder whereNull(
  String column, {
  String boolean = 'and',
  bool not = false,
}) {
  _appendCondition(
    _createNullCondition(column, not),
    isOr: (boolean.toLowerCase() == 'or'),
  );
  return this;
}