androidGradleCache property

String? get androidGradleCache

Implementation

String? get androidGradleCache {
  final home = homeDirectory;
  return home == null ? null : p.join(home, '.gradle', 'caches');
}