PersistedBoolSignal constructor
PersistedBoolSignal(
- bool val,
- String key, {
- SignalsKeyValueStore? store,
Creates a new BoolSignal.
Implementation
PersistedBoolSignal(
super.val,
String key, {
SignalsKeyValueStore? store,
}) : super(
key: key,
store: store ?? SignalsKeyValueStore.defaultStore,
);