PUB_CACHE top-level property

String get PUB_CACHE

dart的.pub-cache地址

Implementation

String get PUB_CACHE {
  final path = Platform.environment['PUB_CACHE'];
  if (path == null) {
    throw Exception('Unable to find PUB_CACHE in environment variables, you must configure it first.');
  }
  return path;
}