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