flutterExecutablePath top-level property

String? flutterExecutablePath

Resolved flutter path if found

Implementation

String? get flutterExecutablePath =>
    _flutterExecutablePath ??= whichSync('flutter');
  1. @Deprecated('Dev only')
void flutterExecutablePath=(String? path)

Test only

Implementation

@Deprecated('Dev only')
set flutterExecutablePath(String? path) {
  _flutterExecutablePath = path;
  // Reset info
  _flutterBinInfo = null;
}