copyWith method

  1. @override
WhereClauseIsNull copyWith({
  1. BooleanOperator? operator,
  2. bool? isNull,
  3. String? column,
})
override

Implementation

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