Skip to content

Commit a9a73a9

Browse files
Fix issues from dart analysis
1 parent 95d62cd commit a9a73a9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/src/country_list_view.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class CountryListView extends StatefulWidget {
6161
super(key: key);
6262

6363
@override
64-
_CountryListViewState createState() => _CountryListViewState();
64+
State<CountryListView> createState() => _CountryListViewState();
6565
}
6666

6767
class _CountryListViewState extends State<CountryListView> {

pubspec.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ environment:
1010
sdk: '>=2.12.0 <3.0.0'
1111

1212
dependencies:
13+
collection: ^1.17.0
1314
flutter:
1415
sdk: flutter
15-
collection: ^1.17.0
16+
1617

1718
flutter:
1819

0 commit comments

Comments
 (0)