VideoControls constructor

const VideoControls(
  1. VideoController controller, {
  2. required VoidCallback openFullScreen,
  3. required VoidCallback closeFullScreen,
})

Creates a widget to show video controls.

controller must be initialized before creating this widget

Implementation

const VideoControls(
  this.controller,
  {
    required this.openFullScreen,
    required this.closeFullScreen,
  }
);