Navaron Bracke

fix lint

@@ -7,7 +7,7 @@ class BarcodeListScannerWithController extends StatefulWidget { @@ -7,7 +7,7 @@ class BarcodeListScannerWithController extends StatefulWidget {
7 const BarcodeListScannerWithController({Key? key}) : super(key: key); 7 const BarcodeListScannerWithController({Key? key}) : super(key: key);
8 8
9 @override 9 @override
10 - _BarcodeListScannerWithControllerState createState() => 10 + State<BarcodeListScannerWithController> createState() =>
11 _BarcodeListScannerWithControllerState(); 11 _BarcodeListScannerWithControllerState();
12 } 12 }
13 13
@@ -7,7 +7,7 @@ class BarcodeScannerWithController extends StatefulWidget { @@ -7,7 +7,7 @@ class BarcodeScannerWithController extends StatefulWidget {
7 const BarcodeScannerWithController({Key? key}) : super(key: key); 7 const BarcodeScannerWithController({Key? key}) : super(key: key);
8 8
9 @override 9 @override
10 - _BarcodeScannerWithControllerState createState() => 10 + State<BarcodeScannerWithController> createState() =>
11 _BarcodeScannerWithControllerState(); 11 _BarcodeScannerWithControllerState();
12 } 12 }
13 13
@@ -6,7 +6,7 @@ class BarcodeScannerPageView extends StatefulWidget { @@ -6,7 +6,7 @@ class BarcodeScannerPageView extends StatefulWidget {
6 const BarcodeScannerPageView({Key? key}) : super(key: key); 6 const BarcodeScannerPageView({Key? key}) : super(key: key);
7 7
8 @override 8 @override
9 - _BarcodeScannerPageViewState createState() => _BarcodeScannerPageViewState(); 9 + State<BarcodeScannerPageView> createState() => _BarcodeScannerPageViewState();
10 } 10 }
11 11
12 class _BarcodeScannerPageViewState extends State<BarcodeScannerPageView> 12 class _BarcodeScannerPageViewState extends State<BarcodeScannerPageView>
@@ -8,7 +8,7 @@ class BarcodeScannerReturningImage extends StatefulWidget { @@ -8,7 +8,7 @@ class BarcodeScannerReturningImage extends StatefulWidget {
8 const BarcodeScannerReturningImage({Key? key}) : super(key: key); 8 const BarcodeScannerReturningImage({Key? key}) : super(key: key);
9 9
10 @override 10 @override
11 - _BarcodeScannerReturningImageState createState() => 11 + State<BarcodeScannerReturningImage> createState() =>
12 _BarcodeScannerReturningImageState(); 12 _BarcodeScannerReturningImageState();
13 } 13 }
14 14
@@ -9,7 +9,7 @@ class BarcodeScannerWithScanWindow extends StatefulWidget { @@ -9,7 +9,7 @@ class BarcodeScannerWithScanWindow extends StatefulWidget {
9 const BarcodeScannerWithScanWindow({Key? key}) : super(key: key); 9 const BarcodeScannerWithScanWindow({Key? key}) : super(key: key);
10 10
11 @override 11 @override
12 - _BarcodeScannerWithScanWindowState createState() => 12 + State<BarcodeScannerWithScanWindow> createState() =>
13 _BarcodeScannerWithScanWindowState(); 13 _BarcodeScannerWithScanWindowState();
14 } 14 }
15 15
@@ -6,7 +6,7 @@ class BarcodeScannerWithoutController extends StatefulWidget { @@ -6,7 +6,7 @@ class BarcodeScannerWithoutController extends StatefulWidget {
6 const BarcodeScannerWithoutController({Key? key}) : super(key: key); 6 const BarcodeScannerWithoutController({Key? key}) : super(key: key);
7 7
8 @override 8 @override
9 - _BarcodeScannerWithoutControllerState createState() => 9 + State<BarcodeScannerWithoutController> createState() =>
10 _BarcodeScannerWithoutControllerState(); 10 _BarcodeScannerWithoutControllerState();
11 } 11 }
12 12
@@ -8,7 +8,7 @@ class BarcodeScannerWithZoom extends StatefulWidget { @@ -8,7 +8,7 @@ class BarcodeScannerWithZoom extends StatefulWidget {
8 const BarcodeScannerWithZoom({Key? key}) : super(key: key); 8 const BarcodeScannerWithZoom({Key? key}) : super(key: key);
9 9
10 @override 10 @override
11 - _BarcodeScannerWithZoomState createState() => _BarcodeScannerWithZoomState(); 11 + State<BarcodeScannerWithZoom> createState() => _BarcodeScannerWithZoomState();
12 } 12 }
13 13
14 class _BarcodeScannerWithZoomState extends State<BarcodeScannerWithZoom> 14 class _BarcodeScannerWithZoomState extends State<BarcodeScannerWithZoom>