flutterStoreExists static method
Whether the flutter store file exists.
Implementation
static bool flutterStoreExists() {
final flutterStore = File(path.join(_userHomeDir(), '.flutter'));
return flutterStore.existsSync();
}
Whether the flutter store file exists.
static bool flutterStoreExists() {
final flutterStore = File(path.join(_userHomeDir(), '.flutter'));
return flutterStore.existsSync();
}