Skip to content

Commit

Permalink
refactor: pass new linter rules
Browse files Browse the repository at this point in the history
  • Loading branch information
sanzoghenzo committed Oct 29, 2023
1 parent b6eeaaf commit c4f7efb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ void main() {
}

class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
const MyApp({super.key});

@override
Widget build(BuildContext context) {
Expand All @@ -33,7 +33,7 @@ class MyApp extends StatelessWidget {
}

class HomePage extends StatefulWidget {
const HomePage({Key? key, required this.title}) : super(key: key);
const HomePage({super.key, required this.title});

final String title;

Expand Down

0 comments on commit c4f7efb

Please sign in to comment.