BitControl<M, V, L>.worker constructor

BitControl<M, V, L>.worker(
  1. BitWorker<V, L> worker, {
  2. M? initial,
  3. bool lazy = true,
  4. bool history = true,
})

Implementation

BitControl.worker(BitWorker<V, L> worker,
    {M? initial, bool lazy = true, bool history = true})
    : this(Bit<V, L>(worker), initial: initial, lazy: lazy, history: history);