ColorSwatch constructor

const ColorSwatch({
  1. required Color $50,
  2. required Color $100,
  3. required Color $200,
  4. required Color $300,
  5. required Color $400,
  6. required Color $500,
  7. required Color $600,
  8. required Color $700,
  9. required Color $800,
  10. required Color $900,
  11. required Color $950,
})

Implementation

const ColorSwatch({
  required this.$50,
  required this.$100,
  required this.$200,
  required this.$300,
  required this.$400,
  required this.$500,
  required this.$600,
  required this.$700,
  required this.$800,
  required this.$900,
  required this.$950,
});