removeLast method

Tuple7<T1, T2, T3, T4, T5, T6, T7> removeLast()

Returns a new tuple with the last element removed.

Implementation

Tuple7<T1, T2, T3, T4, T5, T6, T7> removeLast() =>
    Tuple7(first, second, third, fourth, fifth, sixth, seventh);