getSysCache function
Implementation
String getSysCache() {
if (Platform.environment['PUB_CACHE'] != null) {
return Platform.environment['PUB_CACHE'];
} else {
if (Platform.isWindows) {
return '%APPDATA%\Pub\Cache';
} else {
return Platform.environment['HOME'] + '/.pub-cache';
}
}
}