removeLast method

void removeLast()

remove last element in list and notify listeners

Implementation

void removeLast() {
  value.removeLast();
  notifyListeners();
}