(commandToReRun?: string)
| 86 | ); |
| 87 | } |
| 88 | public showFlutterActivationFailure(commandToReRun?: string) { |
| 89 | void this.showSdkActivationFailure( |
| 90 | "Flutter", |
| 91 | (p) => this.findFlutterSdk(p), |
| 92 | FLUTTER_DOWNLOAD_URL, |
| 93 | (p) => config.setGlobalFlutterSdkPath(p), |
| 94 | commandToReRun, |
| 95 | ); |
| 96 | } |
| 97 | public showDartActivationFailure(commandToReRun?: string) { |
| 98 | void this.showSdkActivationFailure( |
| 99 | "Dart", |
no test coverage detected