load method
Loads all registered assets. Should be called during onLoad.
Implementation
Future<void> load() async {
if (_loaded) {
return;
}
await _loader.load();
_loaded = true;
}
Loads all registered assets. Should be called during onLoad.
Future<void> load() async {
if (_loaded) {
return;
}
await _loader.load();
_loaded = true;
}