removeSeventh method

Tuple6<T1, T2, T3, T4, T5, T6> removeSeventh()

Returns a new tuple with the seventh element removed.

Implementation

Tuple6<T1, T2, T3, T4, T5, T6> removeSeventh() =>
    Tuple6(first, second, third, fourth, fifth, sixth);