withItem1<E> method

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

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

Implementation

Tuple8<E, T2, T3, T4, T5, T6, T7, T8> withItem1<E>(E newItem) =>
    Tuple8(newItem, item2, item3, item4, item5, item6, item7, item8);