removeFifth method

Tuple6<T1, T2, T3, T4, T6, T7> removeFifth()

Returns a new tuple with the fifth element removed.

Implementation

Tuple6<T1, T2, T3, T4, T6, T7> removeFifth() =>
    Tuple6(first, second, third, fourth, sixth, seventh);