removeSecond method

Tuple5<T1, T3, T4, T5, T6> removeSecond()

Returns a new tuple with the second element removed.

Implementation

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