BackgroundRemovalScreen constructor

const BackgroundRemovalScreen({
  1. Key? key,
  2. required String imagePath,
  3. bool cropToSubject = true,
  4. BackgroundRemovalService service = const BackgroundRemovalService(),
})

Implementation

const BackgroundRemovalScreen({
  super.key,
  required this.imagePath,
  this.cropToSubject = true,
  this.service = const BackgroundRemovalService(),
});