InternalIocInheritedWidget<T> constructor

InternalIocInheritedWidget<T>({
  1. required T factory(
    1. BuildContext context
    ),
  2. required Widget child,
  3. required _IocWidgetState<T> state,
  4. bool isLazySingleton = false,
  5. void dispose()?,
  6. Key? key,
})

Implementation

InternalIocInheritedWidget({
  required this.factory,
  required super.child,
  required this.state,
  this.isLazySingleton = false,
  this.dispose,
  super.key,
});