MVUProvider<Model, Msg>.fromProcessor constructor
MVUProvider<Model, Msg>.fromProcessor ({})
Creates a MVUProvider with the given processor.
processoris the processor to be used.childis the widget to be rendered.onInitis called when the widget is initialized.onDisposeis called when the widget is disposed.
Implementation
MVUProvider.fromProcessor(
{required this.processor,
this.child = const SizedBox.shrink(),
this.onInit,
this.onDispose,
this.disposesProcessor = false,
super.key});