whereNull method

CrazyDB whereNull({
  1. required String column,
})

Implementation

CrazyDB whereNull({required String column}) {
  _whereList.add("$column is null");
  return this;
}