Skip to content

Commit

Permalink
Fixed a stray lint issue due to recent PR.
Browse files Browse the repository at this point in the history
  • Loading branch information
diegotori committed Sep 10, 2024
1 parent 34d7b5f commit 432f943
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/center_seek_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import 'package:flutter/material.dart';

class CenterSeekButton extends StatelessWidget {
const CenterSeekButton({
Key? key,
super.key,
required this.iconData,
required this.backgroundColor,
this.iconColor,
required this.show,
this.fadeDuration = const Duration(milliseconds: 300),
this.iconSize = 26,
this.onPressed,
}) : super(key: key);
});

final IconData iconData;
final Color backgroundColor;
Expand Down

0 comments on commit 432f943

Please sign in to comment.