derivedDataPath property

String get derivedDataPath

Default Derived Data path under the current user home.

Implementation

String get derivedDataPath {
  final home =
      _homeDirectory ?? Platform.environment['HOME'] ?? Platform.pathSeparator;
  return derivedDataPathFor(home);
}