MVUProviderTree constructor

const MVUProviderTree({
  1. Key? key,
  2. required List<MVUProvider> providers,
  3. 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);