VideoEvent constructor
VideoEvent({
- required VideoEventType eventType,
- DurationRange? duration,
- Size? size,
- int? buffered,
- String? text,
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,
});