GuardedConfigurationScope constructor

const GuardedConfigurationScope({
  1. Key? key,
  2. required Iterable<GuardedConfiguration> configurations,
  3. required Widget child,
})

Implementation

const GuardedConfigurationScope({
  super.key,
  required this.configurations,
  required this.child,
});