withItem2 method
Returns a tuple with the second item set to the specified value.
Implementation
Tuple3<T1, T2, T3> withItem2(T2 v) => Tuple3<T1, T2, T3>(first, v, third);
Returns a tuple with the second item set to the specified value.
Tuple3<T1, T2, T3> withItem2(T2 v) => Tuple3<T1, T2, T3>(first, v, third);