NiceColorScheme constructor
const
NiceColorScheme({ - required Color primary,
- required Color primaryVariant,
- required Color secondary,
- required Color background,
- required Color surface,
- required Color error,
- required Color onPrimary,
- required Color onBackground,
- required Color onSurface,
- required Color onError,
- required Color border,
- required Color disabled,
- required Color success,
- required Color warning,
- required Color info,
})
Implementation
const NiceColorScheme({
required this.primary,
required this.primaryVariant,
required this.secondary,
required this.background,
required this.surface,
required this.error,
required this.onPrimary,
required this.onBackground,
required this.onSurface,
required this.onError,
required this.border,
required this.disabled,
required this.success,
required this.warning,
required this.info,
});