PreviousButton constructor

const PreviousButton({
  1. Key? key,
  2. required VideoPlayerState state,
  3. Widget? child,
  4. PlayerTheme? theme,
})

Implementation

const PreviousButton({
  super.key,
  required this.state,
  this.child,
  this.theme,
});