BottomBuilder typedef

BottomBuilder = Widget? Function(BuildContext context, bool isFullScreen, Widget playPauseButton, Widget progressBar, Widget muteButton, Widget speedButton, Widget fullScreenButton)

It is used to define the control buttons at the bottom and the layout of the display content.

Implementation

typedef BottomBuilder = Widget? Function(
  BuildContext context,
  bool isFullScreen,
  Widget playPauseButton,
  Widget progressBar,
  Widget muteButton,
  Widget speedButton,
  Widget fullScreenButton,
);