DebugPanelTheme constructor

const DebugPanelTheme({
  1. required Color backgroundColor,
  2. required Color surfaceColor,
  3. required Color accentColor,
  4. required Color textPrimary,
  5. required Color textSecondary,
  6. required Color successColor,
  7. required Color warningColor,
  8. required Color errorColor,
  9. required Color infoColor,
  10. required Color borderColor,
  11. double borderRadius = 8.0,
  12. double defaultPadding = 16.0,
  13. String? fontFamily,
  14. String monoFontFamily = 'monospace',
})

Creates a debug panel theme.

Implementation

const DebugPanelTheme({
  required this.backgroundColor,
  required this.surfaceColor,
  required this.accentColor,
  required this.textPrimary,
  required this.textSecondary,
  required this.successColor,
  required this.warningColor,
  required this.errorColor,
  required this.infoColor,
  required this.borderColor,
  this.borderRadius = 8.0,
  this.defaultPadding = 16.0,
  this.fontFamily,
  this.monoFontFamily = 'monospace',
});