ProviderScope constructor

const ProviderScope({
  1. Key? key,
  2. required ServiceScope create(),
  3. required Widget child,
  4. void onDispose(
    1. ServiceScope
    )?,
})

Implementation

const ProviderScope({
  super.key,
  required this.create,
  required this.child,
  this.onDispose,
});