Reputation: 97
I just wanted to know if my flutter app depends on a certain package and if the package has made some changes in its part how will it affect my app if I am only using one version of that package say
dependencies
flutter_eg:3.14
Upvotes: 0
Views: 109
Reputation: 705
In the case you mentioned, nothing happens and your app continues to use that exact version.
Take a look at this to learn more about dependencies version constraints
Upvotes: 1