copyWith method

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

Returns a new instance by overriding the values passed as arguments

Implementation

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