UCropOptions constructor

const UCropOptions({
  1. UCropShape shape = UCropShape.rectangle,
  2. double? aspectRatio,
  3. List<UCropAspectRatio>? aspectRatios,
  4. int? maxWidth,
  5. int? maxHeight,
  6. bool allowRotate = true,
  7. bool allowFlip = true,
  8. bool allowAdjust = true,
  9. bool allowShapeToggle = false,
  10. String? title,
})

Implementation

const UCropOptions({
  this.shape = UCropShape.rectangle,
  this.aspectRatio,
  this.aspectRatios,
  this.maxWidth,
  this.maxHeight,
  this.allowRotate = true,
  this.allowFlip = true,
  this.allowAdjust = true,
  this.allowShapeToggle = false,
  this.title,
});