withItem1 method Null safety
- T1 v
Returns a tuple with the first item set to the specified value.
Implementation
Tuple3<T1, T2, T3> withItem1(T1 v) => Tuple3<T1, T2, T3>(v, item2, item3);
Returns a tuple with the first item set to the specified value.
Tuple3<T1, T2, T3> withItem1(T1 v) => Tuple3<T1, T2, T3>(v, item2, item3);