Error: The non-abstract class ‘BuildForInputLogger’ is missing implementations for these members:
2
flutter packages pub run build_runner build --delete-conflicting-outputs
If you are using the DIO then update the dio class according to the new update
There are issues with build_runner package in the latest build. For now consider using build_runner 2.3.3 for your project in the pubspec.yaml file.
build_runner
build_runner 2.3.3
pubspec.yaml
# build runner build_runner: 2.3.3
After which run the below commands:
flutter clean flutter pub get flutter pub run build_runner build --delete-conflicting-outputs
Your project should now run properly.
Click here to cancel reply.
2
Answers
flutter packages pub run build_runner build --delete-conflicting-outputs
If you are using the DIO then update the dio class according to the new update
There are issues with
build_runner
package in the latest build. For now consider usingbuild_runner 2.3.3
for your project in thepubspec.yaml
file.After which run the below commands:
Your project should now run properly.