adbPath property

String get adbPath

Implementation

String get adbPath {
  final sdkAdbPath = '${getAndroidHome()}/platform-tools/adb';
  if (_pathExists(sdkAdbPath)) return sdkAdbPath;

  return 'adb';
}