SingleImageEditor constructor

const SingleImageEditor({
  1. Key? key,
  2. Directory? savePath,
  3. dynamic image,
  4. List? imageList,
  5. bool allowCamera = false,
  6. bool allowGallery = false,
})

Implementation

const SingleImageEditor({
  Key? key,
  this.savePath,
  this.image,
  this.imageList,
  this.allowCamera = false,
  this.allowGallery = false,
}) : super(key: key);