ShadToasterScope constructor

const ShadToasterScope({
  1. Key? key,
  2. required Widget child,
  3. required ShadToasterState shadMessengerState,
})

Creates a scope widget that holds the ShadToasterState and child.

Implementation

const ShadToasterScope({
  super.key,
  required super.child,
  required this.shadMessengerState,
});