PagedNotifier<PageKeyType, ItemType> class

Inheritance
Mixed in types

Constructors

PagedNotifier({required LoadFunction<PageKeyType, ItemType> load, required NextPageKeyBuilder<PageKeyType, ItemType> nextPageKeyBuilder, String? errorBuilder(dynamic error)?})

Properties

debugState PagedState<PageKeyType, ItemType>
A development-only way to access state outside of StateNotifier.
no setterinherited
errorBuilder → (String? Function(dynamic error)?)
A builder for providing a custom error string
final
hashCode int
The hash code for this object.
no setterinherited
hasListeners bool
If a listener has been added using addListener and hasn't been removed yet.
no setterinherited
mounted bool
Whether dispose was called or not.
no setterinherited
nextPageKeyBuilder NextPageKeyBuilder<PageKeyType, ItemType>
Instructs the class on how to build the next page based on the last answer
final
onError ↔ ErrorListener?
A callback for error reporting if one of the listeners added with addListener throws.
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
state PagedState<PageKeyType, ItemType>
The current "state" of this StateNotifier.
getter/setter pairinherited
stream Stream<PagedState<PageKeyType, ItemType>>
A broadcast stream representation of a StateNotifier.
no setterinherited

Methods

addListener(Listener<PagedState<PageKeyType, ItemType>> listener, {bool fireImmediately = true}) → RemoveListener
Subscribes to this object.
inherited
dispose() → void
Frees all the resources associated with this object.
inherited
load(PageKeyType page, int limit) Future<List<ItemType>?>
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
updateShouldNotify(PagedState<PageKeyType, ItemType> old, PagedState<PageKeyType, ItemType> current) bool
Whether to notify listeners or not when state changes
inherited

Operators

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