withItem7<E> method

Tuple8<T1, T2, T3, T4, T5, T6, E, T8> withItem7<E>(
  1. E newItem
)

Returns a tuple with the item7 set to the specified value.

Implementation

Tuple8<T1, T2, T3, T4, T5, T6, E, T8> withItem7<E>(E newItem) =>
    Tuple8(item1, item2, item3, item4, item5, item6, newItem, item8);