PersistroMixin<T> mixin

Mixin that adds persistence capabilities to state objects.

Superclass constraints
Mixin applications
Available extensions

Properties

autoSave bool
Whether to automatically save on changes.
no setter
decoder → T Function(String)
Function to decode stored string into value of type T.
no setter
encoder String Function(T)
Function to encode value of type T into string.
no setter
hashCode int
The hash code for this object.
no setterinherited
hasListeners bool
Whether any listeners are currently registered.
no setterinherited
key String
Unique key for storing this state.
no setter
nonNotifiableSetter ← T
Sets the value without notifying listeners.
no getterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value ↔ T
Gets or sets the current value.
getter/setter pairinherited

Methods

addListener(VoidCallback listener) → void
Register a closure to be called when the object changes.
inherited
build({required Widget builder(Basetro<T> state, BuildContext context)}) Widget

Available on Basetro<T>, provided by the BasetroBuilderTools extension

Creates a MastroBuilder widget for this state object.
clear() Future<void>
Clears the persisted value.
debugLog([String? name]) → void

Available on Basetro<T>, provided by the BasetroDebug extension

Logs state changes to the console.
dispose() → void
Discards any resources used by the object. After this is called, the object is not in a usable state and should be discarded (calls to addListener will throw after the object is disposed).
override
disposePersistence() → void
Cleans up persistence resources.
initPersistence() → void
Initializes the persistence system.
modify(void modify(Mutable<T> state)) → void
Modifies the state with a callback.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
notify() → void
Notifies listeners of state changes.
inherited
notifyListeners() → void
Call all the registered listeners.
inherited
persist() Future<void>
Persists the current value.
removeListener(VoidCallback listener) → void
Remove a previously registered closure from the list of closures that are notified when the object changes.
inherited
restore() Future<void>
Restores the persisted value.
toggle() → void

Available on Basetro<bool>, provided by the MastroBoolTools extension

Toggles the boolean value.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited