VideoScrubber constructor
const
VideoScrubber({
- Key? key,
- required Widget child,
- required VideoPlayerController controller,
Create a VideoScrubber handler with the given child
.
controller
is the VideoPlayerController that will be controlled by
this scrubber.
Implementation
const VideoScrubber({
super.key,
required this.child,
required this.controller,
});