mutableCell property

MutableCell<T> get mutableCell

Create a MutableCell with value initialized to this.

Note: the cell is created with the "reset" parameter set to true.

Implementation

MutableCell<T> get mutableCell => MutableCell(this,
  reset: true
);