withItem2 method

Tuple5<T1, T2, T3, T4, T5> withItem2(
  1. T2 v
)

Returns a tuple with the second item set to the specified value.

Implementation

Tuple5<T1, T2, T3, T4, T5> withItem2(T2 v) =>
    Tuple5<T1, T2, T3, T4, T5>(item1, v, item3, item4, item5);