removeLast method
Removes the last value from the list.
Implementation
T removeLast({
bool doNotifyListeners = true,
}) {
final removed = _value.removeLast();
if (doNotifyListeners) {
notifyListeners();
}
return removed;
}
Removes the last value from the list.
T removeLast({
bool doNotifyListeners = true,
}) {
final removed = _value.removeLast();
if (doNotifyListeners) {
notifyListeners();
}
return removed;
}