Skip to content

Commit 432f943

Browse files
committed
Fixed a stray lint issue due to recent PR.
1 parent 34d7b5f commit 432f943

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/center_seek_button.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ import 'package:flutter/material.dart';
22

33
class CenterSeekButton extends StatelessWidget {
44
const CenterSeekButton({
5-
Key? key,
5+
super.key,
66
required this.iconData,
77
required this.backgroundColor,
88
this.iconColor,
99
required this.show,
1010
this.fadeDuration = const Duration(milliseconds: 300),
1111
this.iconSize = 26,
1212
this.onPressed,
13-
}) : super(key: key);
13+
});
1414

1515
final IconData iconData;
1616
final Color backgroundColor;

0 commit comments

Comments
 (0)