FrappeUploadFileParams constructor

FrappeUploadFileParams({
  1. dynamic file,
  2. String? fileName,
  3. bool? isPrivate,
  4. String? folder = 'Home',
  5. String? doctype,
  6. String? docname,
  7. String? docField,
})

Implementation

FrappeUploadFileParams(
    {dynamic file,
    String? fileName,
    this.isPrivate,
    this.folder = 'Home',
    this.doctype,
    this.docname,
    this.docField})
    : super(file: file, fileName: fileName);