flutterStoreExists static method

bool flutterStoreExists()

Whether the flutter store file exists.

Implementation

static bool flutterStoreExists() {
  final flutterStore = File(path.join(_userHomeDir(), '.flutter'));
  return flutterStore.existsSync();
}