MutableCell<T> constructor

MutableCell<T>(
  1. T value, {
  2. dynamic key,
})

Create a mutable cell with its value initialized to value

Implementation

factory MutableCell(T value, {key}) => _MutableCellImpl(value, key: key);