saveAs static method

Future<String?> saveAs(
  1. UStorageBackend backend,
  2. String sourcePath,
  3. String fileName, {
  4. String? mimeType,
})

Lets the user choose where to save. Returns the destination, or null if cancelled.

Implementation

static Future<String?> saveAs(UStorageBackend backend, String sourcePath, String fileName, {String? mimeType}) =>
    impl.saveAs(backend, sourcePath, fileName, mimeType: mimeType);