BaseUrlWrapper constructor

const BaseUrlWrapper({
  1. Key? key,
  2. required Widget child,
  3. int tapCount = 7,
  4. String password = "admin",
  5. String? settingsTitle,
  6. IconData? settingsIcon,
  7. Color? primaryColor,
  8. dynamic onEnvironmentChanged(
    1. Environment
    )?,
  9. bool showInRelease = false,
  10. List<ConfigurationItem>? configurations,
})

Implementation

const BaseUrlWrapper({
  super.key,
  required this.child,
  this.tapCount = 7,
  this.password = "admin",
  this.settingsTitle,
  this.settingsIcon,
  this.primaryColor,
  this.onEnvironmentChanged,
  this.showInRelease = false,
  this.configurations,
});