unmount method

Future<void> unmount(
  1. String path, {
  2. bool debug = false,
})

Implementation

Future<void> unmount(String path, {bool debug = false}) async {
  await _bridge.executor.execute([
    ..._connection.arguments,
    'shell',
    'mount',
    '-o',
    'ro,remount',
    path,
  ], debug: debug);
}