dartBinPath property

  1. @MappableField()
String dartBinPath

Returns dart exec file for cache version

Implementation

@MappableField()
String get dartBinPath {
  /// Get old bin path
  /// Before version 1.17.5 dart path was bin/cache/dart-sdk/bin
  if (hasOldBinPath) return join(_dartSdkCache, 'bin');

  return binPath;
}