fromPath static method
Implementation
static StorageImage? fromPath(String sourcePath) {
String? sid = imageToStorage(sourcePath);
if (sid == null) {
return null;
}
return StorageImage(sid);
}
static StorageImage? fromPath(String sourcePath) {
String? sid = imageToStorage(sourcePath);
if (sid == null) {
return null;
}
return StorageImage(sid);
}