ValueCell<T>.value constructor

const ValueCell<T>.value(
  1. T value
)

Create a value cell with a constant value

Implementation

const factory ValueCell.value(T value) = ConstantCell<T>;