MultiImageEditor constructor

const MultiImageEditor({
  1. Key? key,
  2. List images = const [],
  3. Directory? savePath,
  4. bool allowCamera = false,
  5. bool allowGallery = false,
  6. bool allowMultiple = false,
  7. int maxLength = 99,
})

Implementation

const MultiImageEditor({
  Key? key,
  this.images = const [],
  this.savePath,
  this.allowCamera = false,
  this.allowGallery = false,
  this.allowMultiple = false,
  this.maxLength = 99,
}) : super(key: key);