MVUProviderTree constructor
const
MVUProviderTree({
- Key? key,
- required List<
MVUProvider> providers, - required Widget child,
Creates a new MVUProviderTree widget.
providers
is the list of providers to be added to the tree.child
is the widget to be rendered.
Implementation
const MVUProviderTree({
Key? key,
required this.providers,
required this.child,
}) : super(key: key);