withItem6 method

Tuple6<T1, T2, T3, T4, T5, T6> withItem6(
  1. T6 v
)

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

Implementation

Tuple6<T1, T2, T3, T4, T5, T6> withItem6(T6 v) =>
    Tuple6<T1, T2, T3, T4, T5, T6>(item1, item2, item3, item4, item5, v);