unmount method
- String target
Implementation
void unmount(String target) {
if (_fileSystems[target] != null) {
try {
_fileSystems[target]!.disconnect();
} catch (_) {
rethrow;
}
_fileSystems.remove(target);
}
}
void unmount(String target) {
if (_fileSystems[target] != null) {
try {
_fileSystems[target]!.disconnect();
} catch (_) {
rethrow;
}
_fileSystems.remove(target);
}
}