removeLast method

Tuple3<T1, T2, T3> removeLast()

Returns a new tuple with the last element removed.

Implementation

Tuple3<T1, T2, T3> removeLast() => Tuple3(first, second, third);