warmLoad method
Attempt a warm load, this is the optimal case when the required asset is already in the cache.
Implementation
@override
bool warmLoad() {
var actor = getWarmFlare(_assetProvider!);
if (actor == null) {
return false;
}
_actor = actor;
return _instanceArtboard();
}