isDownloaded method

bool isDownloaded()

True when the SDK is downloaded

Implementation

bool isDownloaded() {
  if (!dartSdkPath.existsSync()) {
    return false;
  }
  if (!dartSdkPath.file('bin/dart').existsSync()) {
    return false;
  }
  return true;
}