FlutterVideoPlayerEventHandler constructor

const FlutterVideoPlayerEventHandler({
  1. dynamic onInitialized()?,
  2. dynamic onVideoProgress(
    1. double position,
    2. double duration,
    3. double bufferedStart,
    4. double bufferedEnd,
    )?,
  3. dynamic onVideoPlayEnd()?,
  4. dynamic onVideoPlayPaused()?,
  5. dynamic onVideoInterruptionBegan()?,
  6. dynamic onVideoInterruptionEnded()?,
  7. dynamic onVideoPipCloseClicked()?,
  8. dynamic onVideoPipFullScreenClicked()?,
})

Implementation

const FlutterVideoPlayerEventHandler(
    {this.onInitialized,
    this.onVideoProgress,
    this.onVideoPlayEnd,
    this.onVideoPlayPaused,
    this.onVideoInterruptionBegan,
    this.onVideoInterruptionEnded,
    this.onVideoPipCloseClicked,
    this.onVideoPipFullScreenClicked});