DesktopUpdaterInheritedNotifier constructor

const DesktopUpdaterInheritedNotifier({
  1. Key? key,
  2. required DesktopUpdaterController controller,
  3. required Widget child,
})

Creates an inherited notifier for controller.

Implementation

const DesktopUpdaterInheritedNotifier({
  super.key,
  required DesktopUpdaterController controller,
  required super.child,
}) : super(notifier: controller);