VideoEvent constructor
VideoEvent({})
Creates an instance of VideoEvent.
The eventType argument is required.
Depending on the eventType, the duration, size and buffered
arguments can be null.
Implementation
// TODO(stuartmorgan): Temporarily suppress warnings about not using const
// in all of the other video player packages, fix this, and then update
// the other packages to use const.
// ignore: prefer_const_constructors_in_immutables
VideoEvent({
required this.eventType,
this.duration,
this.size,
this.buffered,
this.text,
this.textDuration,
this.isPlaying,
this.subtitleAttributes,
this.adInfo,
this.manifestInfo,
});