saveAs static method
Future<String?>
saveAs(
- UStorageBackend backend,
- String sourcePath,
- String fileName, {
- 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);