value property
Returns an unmodifiable view of the internal list.
⚠️ Calling mutations like .removeWhere() on this will throw UnsupportedError.
Use the signal's own methods instead: add, remove, removeWhere, etc.
Implementation
@override
List<T> get value => UnmodifiableListView(unsafeValue);