croppedSize property

  1. @override
Size croppedSize
override

Cropped size of the analysis image corresponding to what is seen on the preview.

Implementation

@override
Size get croppedSize => Size(
      // TODO Width and height of cropRect are inverted
      cropRect.size.height,
      cropRect.size.width,
    );