removeLast method

Future<List<E>> removeLast()

Refer to List.removeLast.

Additionally returns the list.

Implementation

Future<List<E>> removeLast() async => (await this)..removeLast();