pop method

T pop()

Implementation

T pop() {
  final T element = _list.last;
  _list.removeLast();
  return element;
}