LastOrLoadingStateNotifier<T> constructor

LastOrLoadingStateNotifier<T>(
  1. Future<T> _creator()
)

Implementation

LastOrLoadingStateNotifier(this._creator)
    : super(const LoadingFuture.loading()) {
  scheduleMicrotask(refresh);
}