mount method

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

Implementation

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