From a9a73a975996fe6a3f7f2a1209bab61f110d2289 Mon Sep 17 00:00:00 2001 From: -Daniel Ioannou Date: Sat, 4 Mar 2023 16:22:01 +0200 Subject: [PATCH] Fix issues from dart analysis --- lib/src/country_list_view.dart | 2 +- pubspec.yaml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/src/country_list_view.dart b/lib/src/country_list_view.dart index 26b73e0..7053b34 100644 --- a/lib/src/country_list_view.dart +++ b/lib/src/country_list_view.dart @@ -61,7 +61,7 @@ class CountryListView extends StatefulWidget { super(key: key); @override - _CountryListViewState createState() => _CountryListViewState(); + State createState() => _CountryListViewState(); } class _CountryListViewState extends State { diff --git a/pubspec.yaml b/pubspec.yaml index 2634758..e40d4c6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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: