ApperoColors constructor

const ApperoColors({
  1. required Color surface,
  2. required Color onSurface,
  3. required Color onSurfaceVariant,
  4. required Color primary,
  5. required Color onPrimary,
  6. Color? textFieldBackground,
  7. Color? cursor,
})

Implementation

const ApperoColors({
  required this.surface,
  required this.onSurface,
  required this.onSurfaceVariant,
  required this.primary,
  required this.onPrimary,
  this.textFieldBackground,
  this.cursor,
});