createFileFromPath function
Create a File object from path (mobile only) Returns null on web
Implementation
dynamic createFileFromPath(String path) {
if (kIsWeb) {
return null;
}
return file_helper.createFileFromPath(path);
}
Create a File object from path (mobile only) Returns null on web
dynamic createFileFromPath(String path) {
if (kIsWeb) {
return null;
}
return file_helper.createFileFromPath(path);
}