withItem1 method

Tuple7<T1, T2, T3, T4, T5, T6, T7> withItem1(
  1. T1 v
)

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

Implementation

Tuple7<T1, T2, T3, T4, T5, T6, T7> withItem1(T1 v) =>
    Tuple7<T1, T2, T3, T4, T5, T6, T7>(
        v, item2, item3, item4, item5, item6, item7);