removeThird method

Tuple6<T1, T2, T4, T5, T6, T7> removeThird()

Returns a new tuple with the third element removed.

Implementation

Tuple6<T1, T2, T4, T5, T6, T7> removeThird() =>
    Tuple6(first, second, fourth, fifth, sixth, seventh);