FastColorPicker constructor

const FastColorPicker({
  1. Key? key,
  2. IconData? icon,
  3. Color selectedColor = Colors.white,
  4. required dynamic onColorSelected(
    1. Color
    ),
})

Implementation

const FastColorPicker({
  Key? key,
  this.icon,
  this.selectedColor = Colors.white,
  required this.onColorSelected,
}) : super(key: key);