withItem3<E> method

Tuple5<T1, T2, E, T4, T5> withItem3<E>(
  1. E newItem
)

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

Implementation

Tuple5<T1, T2, E, T4, T5> withItem3<E>(E newItem) =>
    Tuple5(item1, item2, newItem, item4, item5);