ImageEditor constructor

const ImageEditor({
  1. Key? key,
  2. File? image,
  3. List? images,
  4. Directory? savePath,
  5. bool allowCamera = false,
  6. bool allowGallery = false,
  7. bool allowMultiple = false,
  8. int maxLength = 99,
  9. Color? appBar,
})

Implementation

const ImageEditor(
    {Key? key,
    this.image,
    this.images,
    this.savePath,
    this.allowCamera = false,
    this.allowGallery = false,
    this.allowMultiple = false,
    this.maxLength = 99,
    Color? appBar})
    : super(key: key);