LastOrLoadingStateNotifier<T> constructor Null safety

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

    Implementation

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