derivedDataPath property
String?
get
derivedDataPath
Default Derived Data path under the current user home.
Returns null when neither homeDirectory nor $HOME is available.
Implementation
String? get derivedDataPath {
final home = _homeDirectory ?? Platform.environment['HOME'];
if (home == null || home.isEmpty) return null;
return derivedDataPathFor(home);
}