removeSecond method

Tuple6<T1, T3, T4, T5, T6, T7> removeSecond()

Returns a new tuple with the second element removed.

Implementation

Tuple6<T1, T3, T4, T5, T6, T7> removeSecond() =>
    Tuple6(first, third, fourth, fifth, sixth, seventh);