CDKPickerColor constructor

const CDKPickerColor(
  1. {Key? key,
  2. required Color color,
  3. dynamic onChanged(
    1. Color
    )?}
)

Implementation

const CDKPickerColor({
  Key? key,
  required this.color,
  this.onChanged,
}) : super(key: key);