ColorProperty constructor

ColorProperty({
  1. required String name,
  2. required Color value,
  3. required String hexValue,
})

Implementation

ColorProperty({
  required super.name,
  required super.value,
  required this.hexValue,
}) : super(type: PropertyType.color);