DerivedBeacon<T> constructor

DerivedBeacon<T>({
  1. bool manualStart = false,
})

Implementation

DerivedBeacon({bool manualStart = false}) {
  _status = WritableBeacon(
    manualStart ? DerivedStatus.idle : DerivedStatus.running,
  );
}