MutableSignal<T>.late constructor
MutableSignal<T>.late ({
- void onChange(
- T value
- T set(
- T newValue
- bool compare(
- T oldValue,
- T newValue
Implementation
factory MutableSignal.late({
void Function(T value)? onChange,
T Function(T newValue)? set,
bool Function(T oldValue, T newValue) compare = _defaultCompare,
}) =>
_MutableSignal.late(onChange: onChange, set: set, compare: compare);