copyFileIntoDownloadFolder method

Future<SavedDownload?> copyFileIntoDownloadFolder(
  1. String filePath,
  2. String fileName, {
  3. File? file,
  4. String? desiredExtension,
  5. String? subDirectoryPath,
  6. bool openAfterSave = false,
})

Implementation

Future<SavedDownload?> copyFileIntoDownloadFolder(
  String filePath,
  String fileName, {
  File? file,
  String? desiredExtension,
  String? subDirectoryPath,
  bool openAfterSave = false,
}) => throw UnimplementedError(
  'copyFileIntoDownloadFolder() has not been implemented.',
);