SaveFileDialogParams constructor

SaveFileDialogParams({
  1. required String sourceFilePath,
  2. Uint8List? data,
  3. required String destinationFileName,
})

Implementation

SaveFileDialogParams({
  required this.sourceFilePath,
  this.data,
  required this.destinationFileName,
});