broadcast<T> static method

ActionControl<T> broadcast<T>(
  1. T value
)

Strict implementation of ObservableValue based on ControlObservable. Multiple subs can be used. Check single or empty for different approaches.

Implementation

static ActionControl<T> broadcast<T>(T value) => ActionControl<T>._(value);