onLoadStart method

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

The loadstart event is fired when the browser has started to load a resource. Read more...

Implementation

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