RawImageLoadOptions constructor

RawImageLoadOptions({
  1. Rectangle<int>? roi,
  2. ImageRotation orientation = ImageRotation.NONE,
})

Implementation

RawImageLoadOptions({
  Rectangle<int>? roi,
  this.orientation = ImageRotation.NONE,
}) : roi = roi ?? Rectangle<int>(0, 0, 0, 0);