ColorPicBtn constructor

const ColorPicBtn({
  1. Key? key,
  2. required Color initColor,
  3. required void onColorChanged(
    1. Color color
    ),
})

Implementation

const ColorPicBtn({
  Key? key,
  required this.initColor,
  required this.onColorChanged,
}) : super(key: key);