LoadingManager constructor

LoadingManager([
  1. Function? onLoad,
  2. Function? onProgress,
  3. Function? onError
])

Implementation

LoadingManager([this.onLoad, this.onProgress, this.onError]) {
  // Refer to #5689 for the reason why we don't set .onStart
  // in the constructor

  onStart = null;
}