DevToolsTheme constructor

const DevToolsTheme({
  1. Color primaryColor = const Color(0xFF6200EE),
  2. Color secondaryColor = const Color(0xFF03DAC6),
  3. Color successColor = const Color(0xFF4CAF50),
  4. Color warningColor = const Color(0xFFFF9800),
  5. Color errorColor = const Color(0xFFF44336),
  6. Color backgroundColor = Colors.white,
  7. Color textColor = const Color(0xFF212121),
  8. 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,
});