MutableValue<T>.computed constructor

const MutableValue<T>.computed(
  1. T get(),
  2. void set(
    1. T
    )
)

Implementation

const factory MutableValue.computed(T Function() get, void Function(T) set) = ComputedMutableValue;