warmLoad method

  1. @override
bool warmLoad()
override

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();
}