cropImage method
Crops, rotates, and flips an image.
Implementation
Future<String?> cropImage({
required String path,
required int x,
required int y,
required int width,
required int height,
int rotationDegrees = 0,
bool flipX = false,
int quality = 100,
}) {
throw UnimplementedError('cropImage() has not been implemented.');
}