onSeeked method

Audio onSeeked(
  1. dynamic fun(
    1. Element,
    2. Event
    )?
)

The seeked event is fired when a seek operation completed, the current playback position has changed. Read more...

Implementation

Audio onSeeked(Function(Element, Event)? fun) {
  if (fun != null) on.call('seeked', fun);
  return this;
}