Exception: Error running pod install flutter on iod
flutter clean rm -Rf ios/Pods rm -Rf ios/.symlinks rm -Rf ios/Flutter/Flutter.framework rm -Rf ios/Flutter/Flutter.podspec flutter pub get cd ios pod install cd .. flutter build ios flutter run
Here is what the above code is Doing:
1. Cleaning the flutter project
2. Removing the Pods directory
3. Removing the symlinks directory
4. Removing the Flutter.framework directory
5. Removing the Flutter.podspec file
6. Running flutter pub get
7. Running pod install
8. Running flutter build ios
9. Running flutter run