coldLoad method

  1. @override
Future<void> coldLoad()
override

Load the necessary Flare file specified by AssetProvider. this occurs when the optimal warmLoad fails to find an asset in cache.

Implementation

@override
Future<void> coldLoad() async {
  _actor = await loadFlare(_assetProvider!);
  _instanceArtboard();
}