ProviderElementBase<StateT> constructor

ProviderElementBase<StateT>(
  1. ProviderBase<StateT> _provider
)

An internal class that handles the state of a provider.

This is what keeps track of the state of a provider, and notifies listeners when the state changes. It is also responsible for rebuilding the provider when one of its dependencies changes.

This class is not meant to be used directly and is an implementation detail of providers. Do not use.

Implementation

ProviderElementBase(this._provider);