ImageInput constructor

const ImageInput({
  1. Key? key,
  2. required List<XFile> images,
  3. required ValueChanged<List<XFile>> onChanged,
  4. VoidCallback? onAdd,
  5. bool canDrop = true,
})

Implementation

const ImageInput({
  super.key,
  required this.images,
  required this.onChanged,
  this.onAdd,
  this.canDrop = true,
});