copyWith method
Implementation
@override
WhereClauseLike copyWith({
BooleanOperator? operator,
String? column,
}) {
return WhereClauseLike(
column ?? this.column,
operator: operator ?? this.operator,
);
}
@override
WhereClauseLike copyWith({
BooleanOperator? operator,
String? column,
}) {
return WhereClauseLike(
column ?? this.column,
operator: operator ?? this.operator,
);
}