I am learning more about testing and i want to use Mockito Package and Build Runner Packate then i have my class Cat inside lib/models/cat.dart
then i have my lib/test/cat_test.dart file to test cat class
this is my pubspec.yaml (part of it)
The problem is thrown when i want to run the next command :
dart run build_runner build
and the problem is the next:
Resolving dependencies in /Users/adm/Documents/Things of david/PRACTICAS/Flutter/testing_app... The current Dart SDK version is 2.15.1. Because testing_app requires SDK version >=2.16.1 <3.0.0, version solving failed.
Flutter doctor:
thank you so much for your help.
I had a similar problem and solved it by changing the environment sdk version.
Open the project pubspec yaml file and next to environment: sdk:, change the version number to the minimum version required by the package or app as instructed in the error message.
I had to downgrade my sdk version from from ">=2.17.0-182.0.dev <3.0.0" to ">=2.16.0-182.0.dev <3.0.0".