flutterStoreExists static method

  1. @Deprecated("Replaced by 'FileSystemExtension.flutterStoreExists'")
bool flutterStoreExists()

Whether the flutter store file exists.

Implementation

@Deprecated("Replaced by 'FileSystemExtension.flutterStoreExists'")
static bool flutterStoreExists() {
  final flutterStore = io.File(path.join(_userHomeDir(), '.flutter'));
  return flutterStore.existsSync();
}