DockerHostLocal constructor

DockerHostLocal({
  1. String? dockerBinaryPath,
})

Implementation

DockerHostLocal({String? dockerBinaryPath})
    : _dockerBinaryPath = isNotEmptyString(dockerBinaryPath, trim: true)
          ? dockerBinaryPath
          : null;