executeCommand static method

Future executeCommand(
  1. String command
)

Execute a terminal command (Return the output if exists).

Implementation

static Future<dynamic> executeCommand(String command) async =>
    await executeCommandImpl(command);