CenterPlayButton constructor

CenterPlayButton({
  1. Key? key,
  2. required bool show,
  3. required bool isPlaying,
  4. VoidCallback? onPressed,
})

Implementation

CenterPlayButton({
  Key? key,
  required this.show,
  required this.isPlaying,
  this.onPressed,
}) : super(key: key);