onTimeUpdate method

Video onTimeUpdate(
  1. dynamic fun(
    1. Element,
    2. Event
    )?
)

The timeupdate event is fired when the time indicated by the currentTime attribute has been updated. Read more...

Implementation

Video onTimeUpdate(Function(Element, Event)? fun) {
  if (fun != null) on.call('timeupdate', fun);
  return this;
}