hasCommand method

  1. @override
bool hasCommand(
  1. String command
)
override

Returns true if the external command exists

since 0.0.1

Implementation

@override
bool hasCommand(String command) {
  return which(command) != null;
}