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