NullSafety: Migrate LandingPageWidget

This commit is contained in:
Neeraj Gupta 2022-12-28 13:37:07 +05:30
parent e2f1879f27
commit 875afaef71
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -1,5 +1,3 @@
// @dart=2.9
import 'dart:io';
import 'package:dots_indicator/dots_indicator.dart';
@ -17,7 +15,7 @@ import 'package:photos/ui/common/gradient_button.dart';
import 'package:photos/ui/payment/subscription.dart';
class LandingPageWidget extends StatefulWidget {
const LandingPageWidget({Key key}) : super(key: key);
const LandingPageWidget({Key? key}) : super(key: key);
@override
State<LandingPageWidget> createState() => _LandingPageWidgetState();
@ -240,7 +238,7 @@ class FeatureItemWidget extends StatelessWidget {
this.featureTitleFirstLine,
this.featureTitleSecondLine,
this.subText, {
Key key,
Key? key,
}) : super(key: key);
@override