externalStartupRunInCurrentProcess method

Future<String> externalStartupRunInCurrentProcess({
  1. required String commandLine,
  2. PrivExternalStartupOptions? options,
})

Runs commandLine through /system/bin/sh in this app's own process.

Implementation

Future<String> externalStartupRunInCurrentProcess({
  required String commandLine,
  PrivExternalStartupOptions? options,
}) {
  throw UnimplementedError(
    'externalStartupRunInCurrentProcess() has not been implemented.',
  );
}