modifiable property
The set of modifiable list operations that can be validated.
Includes all standard list mutation methods:
- add/addAll
- insert/insertAll
- remove/removeAt/removeLast/removeRange
- clear/fillRange/replaceRange
- setAll/setRange
Implementation
@override
Iterable<Function> get modifiable => <Function>{add, addAll, clear, remove, removeWhere,
retainWhere, fillRange, insert, insertAll, removeAt, removeLast, removeRange, replaceRange,
setAll, setRange, sort, shuffle, ...super.modifiable};