saveToPath method

Future<bool> saveToPath({
  1. required String path,
})

Save the file to an internal path. This does not allow you to save the file to the device's public storage like Documents, Downloads or Photos but saves the FilePickerCross in an app specific, internal folder for later access by this app only. To export a file to the local storage, use exportToStorage instead.

Implementation

Future<bool> saveToPath({
  required String path,
}) {
  return saveInternalBytes(bytes: toUint8List(), path: path);
}