EnvSwitcherScreen constructor

const EnvSwitcherScreen({
  1. Key? key,
  2. String? title,
  3. IconData? icon,
  4. Color? backgroundColor,
  5. Color? primaryColor,
  6. dynamic onEnvironmentChanged(
    1. Environment
    )?,
  7. bool showDescriptions = true,
  8. bool showInRelease = false,
  9. EnvSwitcherStyle? style,
  10. List<ConfigurationItem>? configurations,
})

Implementation

const EnvSwitcherScreen({
  super.key,
  this.title,
  this.icon,
  this.backgroundColor,
  this.primaryColor,
  this.onEnvironmentChanged,
  this.showDescriptions = true,
  this.showInRelease = false,
  this.style,
  this.configurations,
});