preload property

Preload get preload

Asset preload used to fill the cache.

Implementation

static Preload get preload => _preload;
set preload (Preload value)

Implementation

static set preload(Preload value) {
  if (identical(_preload, value)) return;
  _preload.dispose().ignore();
  _preload = value;
}