Sets a condition that the specified field be NULL.
$field: The name of the field to check.
QueryConditionInterface The called object.
Overrides QueryConditionInterface::isNull
public function isNull($field) {
$this->where
->isNull($field);
return $this;
}