croppedImage method
Returns the image cropped with the current crop rectangle.
You can provide the quality used in the resizing operation.
Returns an Image asynchronously.
Implementation
Future<Image> croppedImage(
{ui.FilterQuality quality = FilterQuality.high}) async {
return Image(
image: UiImageProvider(await croppedBitmap(quality: quality)),
fit: BoxFit.contain,
);
}