exec method

void exec(
  1. String command,
  2. void callback(
    1. dynamic err,
    2. String? stdout,
    3. String? stderr
    )
)

Implementation

void exec(
        String command,
        void Function(dynamic err, String? stdout, String? stderr)
            callback) =>
    jsu.callMethod(this, 'exec', [command, jsu.allowInterop(callback)]);