unmount method

void unmount(
  1. String target
)

Implementation

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