PlayNextButton constructor

const PlayNextButton({
  1. Key? key,
  2. required BccmPlayerController playerController,
  3. required VoidCallback? onTap,
  4. String? text,
  5. Duration appearAtTimeLeft = const Duration(seconds: 10),
})

Implementation

const PlayNextButton({
  super.key,
  required this.playerController,
  required this.onTap,
  this.text,
  this.appearAtTimeLeft = const Duration(seconds: 10),
});