invoke static method

bool invoke(
  1. String command
)

Invoke the operating system command command. This wraps the macOS & Linux native operating system command. for calling shell commands:

Returns true if the command succeeds, and false if it fails.

Implementation

static bool invoke(String command) {
  return _dispatch(command);
}