Skip to content

Commit 3c49fe4

Browse files
committed
chore(publish): prepare for v2.0.0
1 parent 22c8f42 commit 3c49fe4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

example/lib/main.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import 'package:rxdart_ext/state_stream.dart';
99
void main() => runApp(const MyApp());
1010

1111
class MyApp extends StatelessWidget {
12-
const MyApp({Key? key}) : super(key: key);
12+
const MyApp({super.key});
1313

1414
@override
1515
Widget build(BuildContext context) {
@@ -22,7 +22,7 @@ class MyApp extends StatelessWidget {
2222
}
2323

2424
class MyHomePage extends StatelessWidget {
25-
const MyHomePage({Key? key}) : super(key: key);
25+
const MyHomePage({super.key});
2626

2727
@override
2828
Widget build(BuildContext context) {
@@ -47,7 +47,7 @@ class MyHomePage extends StatelessWidget {
4747
}
4848

4949
class MainPage extends StatefulWidget {
50-
const MainPage({Key? key}) : super(key: key);
50+
const MainPage({super.key});
5151

5252
@override
5353
State<MainPage> createState() => _MainPageState();

0 commit comments

Comments
 (0)