copyWith method

ExprRef copyWith({
  1. int? index_,
})

Returns a new instance by overriding the values passed as arguments

Implementation

ExprRef copyWith({
  int /*U32*/ ? index_,
}) =>
    ExprRef(index_: index_ ?? this.index_);