MutableCellView<T> class
A lightweight mutable computed cell that doesn't store its own value.
- Inheritance
-
- Object
- ValueCell<
T> - DependentCell<
T> - ComputeCell<
T> - MutableCellView
- Implemented types
-
- MutableCell<
T>
- MutableCell<
- Available extensions
- ActionCellEffectExtension
- ActionCellExtension
- BoolCellExtension
- BoolValueChangeExtension
- CellHolderExtension
- CellMaybeExtension
- ComputeArgumentsTracker
- ComputeExtension
- ConvertStringExtension
- DelayCellExtension
- DurationCellExtension
- EffectCellExtension
- ErrorCellExtension
- IterableCellExtension
- ListCellExtension
- MapCellExtension
- MaybeCellExtension
- MutableDurationCellExtension
- MutableListCellExtension
- MutableMapCellExtension
- MutableNullCheckExtension
- MutableTransformExtension
- NullCheckExtension
- NumericExtension
- ParseDoubleExtension
- ParseIntExtension
- ParseMaybeDoubleExtension
- ParseMaybeIntExtension
- ParseMaybeNumExtension
- ParseNumExtension
- PeekCellExtension
- PrevValueCellExtension
- SetCellExtension
- StoreCellExtension
- TransformExtension
- ValueChangeExtension
- WaitCellExtension
Constructors
-
MutableCellView({required Set<
ValueCell> arguments, required T compute(), required void reverse(T), dynamic key}) - Create a lightweight mutable computed cell.
Properties
-
arguments
→ Set<
ValueCell> -
Set of argument cells.
finalinherited
- compute → T Function()
-
finalinherited
- equalityCellFactory → EqualityCellFactory
-
Return a factory for creating equality and inequality comparison cells.
no setterinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- key ↔ dynamic
-
Key that uniquely identifies this cell.
latefinalinherited
- reverse → void Function(T)
-
Reverse computation function
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value ↔ T
-
The cell's value
getter/setter pairinherited-getteroverride-setter
Methods
-
addObserver(
CellObserver observer) → void -
Register an observer of the cell to be called when the cell's value changes.
inherited
-
call(
) → T -
Retrieve the value of the cell.
inherited
-
eq<
U> (ValueCell< U> other) → ValueCell<bool> -
Returns a new ValueCell which compares the value of this cell to another cell for equality.
inherited
-
neq<
U> (ValueCell< U> other) → ValueCell<bool> -
Returns a new ValueCell which compares the value of this cell to another cell for inequality.
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
observe(
) → void -
Track this cell as an argument of the current compute/watch function.
inherited
-
removeObserver(
CellObserver observer) → void -
Remove an observer that was previously registered with addObserver.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited