Flutter Pub: Expected a key while parsing a block mapping. path:
Spaces are significant in YAML assets is indented too far flutter_test: sdk: flutter flutter: uses-material-design: true assets: – loadjson/person.json
Spaces are significant in YAML assets is indented too far flutter_test: sdk: flutter flutter: uses-material-design: true assets: – loadjson/person.json
The caret sign (^) is used for pub dependencies in Dart to indicate a range of version numbers are allowed. Specifically, any version from the specified version up to (but not including) the next non-breaking version is ok. So ^3.1.5 is the same as ‘>=3.1.5 <4.0.0’ And ^1.2.3 would be the same as ‘>=1.2.3 <2.0.0’ … Read more