flutterSdkPath property

String? get flutterSdkPath

Resolved Flutter SDK path for the current platform.

Implementation

String? get flutterSdkPath {
  if (Platform.isWindows) return flutterSdkPathWindows;
  if (Platform.isMacOS) return flutterSdkPathMacos;
  return flutterSdkPathLinux;
}