ComUpload constructor

const ComUpload({
  1. Key? key,
  2. required MultiImagePickerController controller,
  3. bool draggable = true,
  4. bool shrinkWrap = true,
  5. int? crossAxisCount = 3,
  6. double? spacing,
})

Implementation

const ComUpload({
  super.key,
  required this.controller,
  this.draggable = true,
  this.shrinkWrap = true,
  this.crossAxisCount = 3,
  this.spacing,
});