copyWith method

InUnnest copyWith({
  1. ExprRef? expr,
  2. ExprRef? arrayExpr,
  3. bool? negated,
})

Returns a new instance by overriding the values passed as arguments

Implementation

InUnnest copyWith({
  ExprRef? expr,
  ExprRef? arrayExpr,
  bool? negated,
}) =>
    InUnnest(
        expr: expr ?? this.expr,
        arrayExpr: arrayExpr ?? this.arrayExpr,
        negated: negated ?? this.negated);