withItem3<E> method

Tuple7<T1, T2, E, T4, T5, T6, T7> withItem3<E>(
  1. E newItem
)

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

Implementation

Tuple7<T1, T2, E, T4, T5, T6, T7> withItem3<E>(E newItem) =>
    Tuple7(item1, item2, newItem, item4, item5, item6, item7);