removeLast method

  1. @override
E removeLast({
  1. bool notifyListeners = true,
})
override

Removes and returns the last object in this list.

The list must be growable and non-empty.

final parts = <String>['head', 'shoulder', 'knees', 'toes'];
final retVal = parts.removeLast(); // toes
print(parts); // [head, shoulder, knees]

Implementation

@override
E removeLast({bool notifyListeners = true}) {
  final element = value.removeLast();
  if (notifyListeners) {
    notifyAllListeners(CollectionEventType.removal, value.length, element);
  }
  return element;
}