DevToolsTheme constructor
const
DevToolsTheme({
- Color primaryColor = const Color(0xFF6200EE),
- Color secondaryColor = const Color(0xFF03DAC6),
- Color successColor = const Color(0xFF4CAF50),
- Color warningColor = const Color(0xFFFF9800),
- Color errorColor = const Color(0xFFF44336),
- Color backgroundColor = Colors.white,
- Color textColor = const Color(0xFF212121),
- Color cardColor = Colors.white,
Implementation
const DevToolsTheme({
this.primaryColor = const Color(0xFF6200EE),
this.secondaryColor = const Color(0xFF03DAC6),
this.successColor = const Color(0xFF4CAF50),
this.warningColor = const Color(0xFFFF9800),
this.errorColor = const Color(0xFFF44336),
this.backgroundColor = Colors.white,
this.textColor = const Color(0xFF212121),
this.cardColor = Colors.white,
});