itemStart method

void itemStart(
  1. String url
)

url — the url to load

This should be called by any loader using the manager when the loader starts loading an url.

Implementation

void itemStart(String url) {
  itemsTotal++;
  if (isLoading == false) {
    if (onStart != null) {
      onStart!(url, itemsLoaded, itemsTotal);
    }
  }
  isLoading = true;
}