CryFile constructor

const CryFile({
  1. Key? key,
  2. dynamic onSaved(
    1. MultipartFile
    )?,
  3. String? initFileUrl,
  4. String? buttonLabel,
  5. String? tip,
  6. List<String>? allowedExtensions,
})

Implementation

const CryFile({
  Key? key,
  this.onSaved,
  this.initFileUrl,
  this.buttonLabel,
  this.tip,
  this.allowedExtensions,
}) : super(key: key);