Home > Software design >  Is there any way to undo 'flutter clean'
Is there any way to undo 'flutter clean'

Time:04-07

I did a stupid mistake unknowingly and now i've got like 1k errors after running the command flutter clean

Is there any way to undo this.

Deleting build...                                                  606ms
Deleting .dart_tool...                                              7.3s
Deleting .packages...                                               28ms
Deleting Generated.xcconfig...                                       3ms
Deleting flutter_export_environment.sh...                            1ms
Deleting .flutter-plugins-dependencies...                            1ms
Deleting .flutter-plugins...                                         1ms

CodePudding user response:

Run flutter pub get, it'll reload the packages

CodePudding user response:

Just run flutter pub get and you'll be good to go.

  • Related