remove method
Remove an entry
Returns true if value
was in the list, false otherwise.
Implementation
bool remove(T entry) {
var r = _list.remove(entry);
if (r) _fireWatchers();
return r;
}
Remove an entry
Returns true if value
was in the list, false otherwise.
bool remove(T entry) {
var r = _list.remove(entry);
if (r) _fireWatchers();
return r;
}