getConfigPath property
String
get
getConfigPath
Get the path to the config file.
Implementation
static String get getConfigPath {
String? home = Platform.isWindows
? Platform.environment['APPDATA']
: Platform.environment['HOME'];
return p.join(home!, '.config', '.dash_cli');
}