AppColors constructor

const AppColors({
  1. required Color red,
  2. required Color orange,
  3. required Color yellow,
  4. required Color green,
  5. required Color purple,
  6. required Color grey,
})

Implementation

const AppColors({
  required this.red,
  required this.orange,
  required this.yellow,
  required this.green,
  required this.purple,
  required this.grey,
});