cocoaPodsCache property

String? get cocoaPodsCache

Implementation

String? get cocoaPodsCache {
  final home = homeDirectory;
  return home == null
      ? null
      : _path.join(home, 'Library', 'Caches', 'CocoaPods');
}