ColumnWhereCondition constructor

ColumnWhereCondition({
  1. required String column,
  2. required String? operator,
  3. required String? value,
  4. bool needCheck = true,
})

The where condition item for custom filter.

Implementation

ColumnWhereCondition({
  required this.column,
  required this.operator,
  required this.value,
  this.needCheck = true,
});