ColorPickerPage constructor

const ColorPickerPage({
  1. Key? key,
  2. required String title,
  3. required Color? initialColor,
})

Implementation

const ColorPickerPage({
  Key? key,
  required this.title,
  required this.initialColor,
  // required this.onColorChanged,
}) : super(key: key);