removeLast method
T
removeLast()
Remove the last entry
Implementation
T removeLast() {
var result = _list.removeLast();
_fireWatchers();
return result;
}
Remove the last entry
T removeLast() {
var result = _list.removeLast();
_fireWatchers();
return result;
}