pop<T> function

T pop<T>(
  1. List<T> list
)

Implementation

T pop<T>(List<T> list) => list.removeLast();