UnArchiveOptions constructor

UnArchiveOptions({
  1. required File file,
  2. required Directory targetDir,
  3. StringBuffer? logBuffer,
  4. void onSuccess()?,
  5. void onError(
    1. Object,
    2. StackTrace?
    )?,
  6. void onFileExtracted(
    1. File extractedFile
    )?,
})

Implementation

UnArchiveOptions({
  required this.file,
  required this.targetDir,
  this.logBuffer,
  this.onSuccess,
  this.onError,
  this.onFileExtracted,
});