DebugPanelTheme constructor
const
DebugPanelTheme({
- required Color backgroundColor,
- required Color surfaceColor,
- required Color accentColor,
- required Color textPrimary,
- required Color textSecondary,
- required Color successColor,
- required Color warningColor,
- required Color errorColor,
- required Color infoColor,
- required Color borderColor,
- double borderRadius = 8.0,
- double defaultPadding = 16.0,
- String? fontFamily,
- 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',
});