Skip to content

Commit

Permalink
chore(android_alarm_manager_plus): using super.key parameter to res…
Browse files Browse the repository at this point in the history
…olve linting issues (#2690)
  • Loading branch information
OutdatedGuy committed Mar 15, 2024
1 parent 9c6b426 commit 986b527
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ Miguel Beltran <m@beltran.work>
Neevash Ramdial <mail@neevash.dev>
Andrew Teich <andrewteich@me.com>
Volodymyr Buberenko <v.buberenko@gmail.com>
Om Phatak <everythingoutdated@gmail.com>
4 changes: 2 additions & 2 deletions packages/android_alarm_manager_plus/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Future<void> main() async {

/// Example app for Espresso plugin.
class AlarmManagerExampleApp extends StatelessWidget {
const AlarmManagerExampleApp({Key? key}) : super(key: key);
const AlarmManagerExampleApp({super.key});

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

class _AlarmHomePage extends StatefulWidget {
const _AlarmHomePage({Key? key}) : super(key: key);
const _AlarmHomePage();

@override
_AlarmHomePageState createState() => _AlarmHomePageState();
Expand Down

0 comments on commit 986b527

Please sign in to comment.