I am having a problem when trying to feeding the images to DiffImage.compareFromMemory
I used this line to convert from Imagebytes to Image
import 'package:image/image.dart' as img
Uint8List imageBytes = await getImageBytes();
img.Image firstImage = img.Image.fromBytes(300, 300, imageBytes);
...