from static method

Chrome? from(
  1. String executable
)

Implementation

static Chrome? from(String executable) {
  return FileSystemEntity.isFileSync(executable)
      ? Chrome._(executable)
      : null;
}