withItem3 method

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

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

Implementation

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