AppTheme constructor
const
AppTheme({
- required String name,
- required Brightness brightness,
- required Color primaryColor,
- required Color accentColor,
- required Color scaffoldBackgroundColor,
- required Color backgroundColor,
- required Color cardColor,
- required Color textColor,
- required Color secondaryTextColor,
- Map<
String, dynamic> customStyles = const {},
Implementation
const AppTheme({
required this.name,
required this.brightness,
required this.primaryColor,
required this.accentColor,
required this.scaffoldBackgroundColor,
required this.backgroundColor,
required this.cardColor,
required this.textColor,
required this.secondaryTextColor,
this.customStyles = const {},
});