preload property
Asset preload used to fill the cache.
Implementation
static Preload get preload => _preload;
Implementation
static set preload(Preload value) {
if (identical(_preload, value)) return;
_preload.dispose().ignore();
_preload = value;
}