ColumnWhereCondition constructor
ColumnWhereCondition({})
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,
});