Skip to content

Commit

Permalink
Apply analyze_options
Browse files Browse the repository at this point in the history
  • Loading branch information
Swanseo0 committed Nov 23, 2023
1 parent 53d327d commit b4d7a28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/network_info_plus/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void main() {
}

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

// This widget is the root of your application.
@override
Expand All @@ -44,7 +44,7 @@ class MyApp extends StatelessWidget {
}

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

final String? title;

Expand Down

0 comments on commit b4d7a28

Please sign in to comment.