FaceCropScreen constructor

const FaceCropScreen({
  1. Key? key,
  2. required Uint8List imageBytes,
  3. Color buttonColor = Colors.black,
  4. Color buttonIconColor = Colors.white,
  5. Color bgColor = Colors.white,
})

Implementation

const FaceCropScreen({
  super.key,
  required this.imageBytes,
  this.buttonColor = Colors.black,
  this.buttonIconColor = Colors.white,
  this.bgColor = Colors.white,
});