UnArchiveOptions constructor
UnArchiveOptions({
- required File file,
- required Directory targetDir,
- StringBuffer? logBuffer,
- void onSuccess()?,
- void onError()?,
- void onFileExtracted(
- File extractedFile
Implementation
UnArchiveOptions({
required this.file,
required this.targetDir,
this.logBuffer,
this.onSuccess,
this.onError,
this.onFileExtracted,
});