PlayButton constructor

const PlayButton({
  1. Key? key,
  2. required dynamic onPressed()?,
  3. required bool isPlaying,
})

Implementation

const PlayButton(
    {super.key, required this.onPressed, required this.isPlaying});