ColorOption constructor

const ColorOption({
  1. required String colorHex,
  2. required String name,
})

Implementation

const ColorOption({
  required this.colorHex,
  required this.name,
});