dartExeName property Null safety
platform specific name of the 'dart' executable
Implementation
static String get dartExeName {
if (core.Settings().isWindows) {
return 'dart.exe';
} else {
return 'dart';
}
}
platform specific name of the 'dart' executable
static String get dartExeName {
if (core.Settings().isWindows) {
return 'dart.exe';
} else {
return 'dart';
}
}