DebugPanelConfig constructor

const DebugPanelConfig({
  1. bool enable = true,
  2. bool enableShake = true,
  3. bool enableLongPress = true,
  4. bool enableThreeFingerTap = true,
  5. Duration longPressDuration = const Duration(seconds: 2),
  6. Color? backgroundColor,
  7. Color? accentColor,
  8. DebugPanelColorScheme colorScheme = DebugPanelColorScheme.darkCyan,
  9. DebugPanelTheme? theme,
})

Implementation

const DebugPanelConfig({
  this.enable = true,
  this.enableShake = true,
  this.enableLongPress = true,
  this.enableThreeFingerTap = true,
  this.longPressDuration = const Duration(seconds: 2),
  this.backgroundColor,
  this.accentColor,
  this.colorScheme = DebugPanelColorScheme.darkCyan,
  this.theme,
});