UncontrolledProviderScope constructor

const UncontrolledProviderScope({
  1. Key? key,
  2. required ProviderContainer container,
  3. required Widget child,
})

Creates a scope that does not own or dispose its container.

Implementation

const UncontrolledProviderScope({
  super.key,
  required this.container,
  required this.child,
});