prefetchAssets method

Future<void> prefetchAssets(
  1. List<String> localIdentifiers, {
  2. String? modelId,
})

Pre-warm the native asset cache for the given local identifiers so the next scanSingleAsset or library scan can decode them with less I/O pressure. Default no-op — platforms without a meaningful warm-cache implementation just return.

Implementation

Future<void> prefetchAssets(
  List<String> localIdentifiers, {
  String? modelId,
}) async {}