We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34d7b5f commit 432f943Copy full SHA for 432f943
lib/src/center_seek_button.dart
@@ -2,15 +2,15 @@ import 'package:flutter/material.dart';
2
3
class CenterSeekButton extends StatelessWidget {
4
const CenterSeekButton({
5
- Key? key,
+ super.key,
6
required this.iconData,
7
required this.backgroundColor,
8
this.iconColor,
9
required this.show,
10
this.fadeDuration = const Duration(milliseconds: 300),
11
this.iconSize = 26,
12
this.onPressed,
13
- }) : super(key: key);
+ });
14
15
final IconData iconData;
16
final Color backgroundColor;
0 commit comments