ColorKnobConfig constructor

const ColorKnobConfig(
  1. String label,
  2. String colorInAlphaHex
)

Creates a new KnobConfig for knobs.color.

const ColorKnobConfig('label', 'ff000000'); // black
const ColorKnobConfig('label', 'ff00ff00'); // green

Implementation

const ColorKnobConfig(super.label, super.colorInAlphaHex);