PlexFormFieldFile constructor

const PlexFormFieldFile({
  1. Key? key,
  2. PlexFormFieldGeneric properties = const PlexFormFieldGeneric.empty(),
  3. List<PlatformFile>? value,
  4. List<String>? allowedExtensions,
  5. bool allowMultiple = false,
  6. void onChanged(
    1. List<PlatformFile> files
    )?,
})

Implementation

const PlexFormFieldFile({
  super.key,
  this.properties = const PlexFormFieldGeneric.empty(),
  this.value,
  this.allowedExtensions,
  this.allowMultiple = false,
  this.onChanged,
});