diff --git a/veilid-flutter/example/lib/app.dart b/veilid-flutter/example/lib/app.dart index ef7d1afc..94ca1e11 100644 --- a/veilid-flutter/example/lib/app.dart +++ b/veilid-flutter/example/lib/app.dart @@ -13,7 +13,7 @@ import 'history_wrapper.dart'; // Main App class MyApp extends StatefulWidget { - const MyApp({Key? key}) : super(key: key); + const MyApp({super.key}); @override State createState() => _MyAppState(); diff --git a/veilid-flutter/example/lib/log_terminal.dart b/veilid-flutter/example/lib/log_terminal.dart index b9c8eacd..7ce676fe 100644 --- a/veilid-flutter/example/lib/log_terminal.dart +++ b/veilid-flutter/example/lib/log_terminal.dart @@ -10,7 +10,7 @@ const kDefaultTerminalStyle = TerminalStyle( fontFamily: kDefaultMonoTerminalFontFamily); class LogTerminal extends StatefulWidget { - const LogTerminal({Key? key}) : super(key: key); + const LogTerminal({super.key}); @override // ignore: library_private_types_in_public_api