InheritedProvider<T extends Listenable> constructor

const InheritedProvider<T extends Listenable>({
  1. Key? key,
  2. required T? notifier,
  3. required Widget child,
})

Implementation

const InheritedProvider({
  Key? key,
  required super.notifier,
  required Widget child,
}) : super(key: key, child: child);