flutterStoreExists static method
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();
}