update to flutter 2.12.0

This commit is contained in:
Zachary Atkins
2021-04-10 12:58:52 -05:00
parent 7e14d242c9
commit 90a0cf0823
5 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
import 'package:flutter/material.dart';
class HomePage extends StatefulWidget {
HomePage({Key key, this.title}) : super(key: key);
HomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override

View File

@@ -51,7 +51,7 @@ class KeyFileManager {
}
class KeygenPage extends StatefulWidget {
KeygenPage({Key key, this.title}) : super(key: key);
KeygenPage({Key? key, required this.title}) : super(key: key);
final String title;
@override