ModifyPageOptions constructor

ModifyPageOptions({
  1. ImageRotation rotation = ImageRotation.NONE,
  2. List<Point<double>>? polygon,
  3. List<ParametricFilter>? filters,
})

Implementation

ModifyPageOptions({
  this.rotation = ImageRotation.NONE,
  List<Point<double>>? polygon,
  List<ParametricFilter>? filters,
})  : polygon = polygon ?? null,
      filters = filters ?? null;