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