ImagePickerWithImagePainter constructor

const ImagePickerWithImagePainter({
  1. Key? key,
  2. required File imagePath,
  3. Color? selectedColor,
  4. Color? unselectedColor,
  5. Color? optionColor,
  6. Color? controlsBackgroundColor,
})

Implementation

const ImagePickerWithImagePainter({
  Key? key,
  required this.imagePath,
  this.selectedColor,
  this.unselectedColor,
  this.optionColor,
  this.controlsBackgroundColor,
}) : super(key: key);