withItem5<E> method

Tuple6<T1, T2, T3, T4, E, T6> withItem5<E>(
  1. E newItem
)

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

Implementation

Tuple6<T1, T2, T3, T4, E, T6> withItem5<E>(E newItem) =>
    Tuple6(item1, item2, item3, item4, newItem, item6);