AutoRefreshAsyncNotifier<T> class
abstract
A class to use instead of AsyncNotifier which provides a way to automatically refresh the state.
- Inheritance
-
- Object
- AsyncNotifier<
T> - AutoRefreshAsyncNotifier
- Implementers
Constructors
- AutoRefreshAsyncNotifier(bool setStateToLoadingOnRefresh)
- A class to use instead of AsyncNotifier which provides a way to automatically refresh the state.
Properties
-
future
→ Future<
T> -
Obtains a Future that resolves with the first state value that is not
AsyncLoading.
read-onlyinherited
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- isPaused → bool
-
true
if auto refreshing is paused.read-only -
ref
→ AsyncNotifierProviderRef<
T> -
The Ref from the provider associated with this AsyncNotifier.
read-onlyinherited
- refreshRate → Duration
-
The refresh rate of the data.
read-only
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
- setStateToLoadingOnRefresh → bool
-
If this is
true
the state will be set to AsyncValue.loading when the data is refreshed.final -
state
↔ AsyncValue<
T> -
The value currently exposed by this AsyncNotifier.
read / writeinherited
Methods
-
build(
) → FutureOr< T> -
Initialize an AsyncNotifier.
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
onRefresh(
) → FutureOr< T> - Returns the new state.
-
pause(
) → void - Pauses auto refreshing.
-
resume(
) → void - Resumes auto refreshing.
-
toString(
) → String -
A string representation of this object.
inherited
-
update(
FutureOr< T> cb(T), {FutureOr<T> onError(Object err, StackTrace stackTrace)?}) → Future<T> -
A function to update state from its previous value, while
abstracting loading/error cases for state.
inherited
-
updateShouldNotify(
AsyncValue< T> previous, AsyncValue<T> next) → bool -
A method invoked when the state exposed by this AsyncNotifier changes.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited