We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6feacf4 commit f8b1adaCopy full SHA for f8b1ada
example/lib/home_page.dart
@@ -2,7 +2,7 @@ import 'package:flutter/material.dart';
2
import 'package:form_builder_validators/form_builder_validators.dart';
3
4
class HomePage extends StatefulWidget {
5
- const HomePage({Key? key}) : super(key: key);
+ const HomePage({super.key});
6
7
@override
8
HomePageState createState() => HomePageState();
example/lib/main.dart
@@ -10,7 +10,7 @@ void main() {
10
}
11
12
class MyApp extends StatelessWidget {
13
- const MyApp({Key? key}) : super(key: key);
+ const MyApp({super.key});
14
15
16
Widget build(BuildContext context) {
0 commit comments