SingleFileInput constructor

const SingleFileInput({
  1. Key? key,
  2. XFile? file,
  3. ValueChanged<XFile?>? onChanged,
  4. bool acceptDrop = false,
  5. bool enabled = true,
})

Implementation

const SingleFileInput({
  super.key,
  this.file,
  this.onChanged,
  this.acceptDrop = false,
  this.enabled = true,
});