MyColorPickerMenu constructor

const MyColorPickerMenu({
  1. Key? key,
  2. TextStyle fontStyle = const TextStyle(fontSize: 17),
  3. ValueChanged<Color?>? onChanged,
  4. Color? currentColor,
})

Implementation

const MyColorPickerMenu({
  Key? key,
  this.fontStyle = const TextStyle(
    fontSize: 17,
  ),
  this.onChanged,
  this.currentColor,
}) : super(key: key);