David PHAM-VAN

Fix example lints

@@ -12,7 +12,7 @@ Future<void> main() async { @@ -12,7 +12,7 @@ Future<void> main() async {
12 } 12 }
13 13
14 class MyApp extends StatelessWidget { 14 class MyApp extends StatelessWidget {
15 - const MyApp(this.title); 15 + const MyApp(this.title, {Key? key}) : super(key: key);
16 16
17 final String title; 17 final String title;
18 18
@@ -19,7 +19,7 @@ dependency_overrides: @@ -19,7 +19,7 @@ dependency_overrides:
19 path: ../ 19 path: ../
20 20
21 dev_dependencies: 21 dev_dependencies:
22 - pedantic: 22 + flutter_lints:
23 23
24 flutter: 24 flutter:
25 uses-material-design: true 25 uses-material-design: true