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