flutter reference to unspecified seems stuck at 0.3.4

I'm trying to add a reference to openid_client in my flutter app.

I add a dependency to openid_client: ^0.1.3 in my pubspec.yaml and save. This runs flutter packages get, which reports the following error:

Package unscripted has no versions that match >=0.6.2 <0.7.0 derived from:
- openid_client 0.1.0 depends on version >=0.6.2 <0.7.0


Indeed, the openid_client package does depend on unscripted version 0.6.2, but my flutter app cannot reference 0.6.2. It appears the highest version of unscripted my flutter app can reference is 0.3.4. Does anyone know what I'm doing wrong?

This is my pubspec.yaml as it currently stands:

name: flit
description: A new Flutter project.

dependencies:
flutter:
sdk: flutter

cupertino_icons: ^0.1.0
english_words: ^3.1.0
openid_client: ^0.1.3

dev_dependencies:
flutter_test:
sdk: flutter

flutter:
uses-material-design: true

Comments

Popular posts from this blog

Meaning of `{}` for return expression

Get current scroll position of ScrollView in React Native

flutter websocket connection issue