removeBackground function

Future removeBackground({
  1. required Uint8List imageBytes,
})

Implementation

Future<dynamic> removeBackground({required Uint8List imageBytes}) async {
  return await BackgroundRemover.removeBackground(
    imageBytes: imageBytes,
  );
}