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