Skip to content

Commit

Permalink
Fix issues from dart analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-Ioannou committed Mar 4, 2023
1 parent 95d62cd commit a9a73a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/country_list_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class CountryListView extends StatefulWidget {
super(key: key);

@override
_CountryListViewState createState() => _CountryListViewState();
State<CountryListView> createState() => _CountryListViewState();
}

class _CountryListViewState extends State<CountryListView> {
Expand Down
3 changes: 2 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
collection: ^1.17.0
flutter:
sdk: flutter
collection: ^1.17.0


flutter:

Expand Down

0 comments on commit a9a73a9

Please sign in to comment.