ColumnWhereCondition constructor

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

The where condition item.

The operator is the operator of the condition.

The value is the value of the condition.

Implementation

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