RawImageLoadOptions constructor
RawImageLoadOptions({
- Rectangle<
int> ? cropRect, - ImageOrigin origin = ImageOrigin.TOP_LEFT,
- CanvasColor canvasColor = CanvasColor.WHITE,
- ImageRotation orientation = ImageRotation.NONE,
Implementation
RawImageLoadOptions({
Rectangle<int>? cropRect,
this.origin = ImageOrigin.TOP_LEFT,
this.canvasColor = CanvasColor.WHITE,
this.orientation = ImageRotation.NONE,
}) : cropRect = cropRect ?? Rectangle<int>(0, 0, 0, 0);