PersistedBoolSignal constructor

PersistedBoolSignal(
  1. bool val,
  2. String key, {
  3. SignalsKeyValueStore? store,
})

Creates a new BoolSignal.

Implementation

PersistedBoolSignal(
  super.val,
  String key, {
  SignalsKeyValueStore? store,
}) : super(
        key: key,
        store: store ?? SignalsKeyValueStore.defaultStore,
      );