exeName property
String
get
exeName
Returns the platform dependant name of the compiled script's exe name. On Linux and MacOS this is just the basename (script name without the extension) on Windows this is the 'basename.exe'.
Implementation
String get exeName => '$basename${Settings().isWindows ? '.exe' : ''}';