MutableComputedState<T> constructor

const MutableComputedState<T>({
  1. required Future<T> refresh(),
  2. required ComputedStateValue<T> getValue(),
  3. required void clear(),
  4. required void updateValue(
    1. T value
    ),
})

Implementation

const MutableComputedState({
  required this.refresh,
  required this.getValue,
  required this.clear,
  required this.updateValue,
});