removeFirst method

Tuple5<T2, T3, T4, T5, T6> removeFirst()

Returns a new tuple with the first element removed.

Implementation

Tuple5<T2, T3, T4, T5, T6> removeFirst() =>
    Tuple5(second, third, fourth, fifth, sixth);