copyWith method

  1. @override
WhereClauseLike copyWith({
  1. BooleanOperator? operator,
  2. String? column,
})
override

Implementation

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