warmUp static method

Future<void> warmUp(
  1. List<MarkerConfig> configs
)

Warm up the cache with pre-defined configurations

Implementation

static Future<void> warmUp(List<MarkerConfig> configs) async {
  // Pre-generate bitmaps for Google Maps
  for (final config in configs) {
    if (_bitmapCache[CacheKey.forBitmap(config)] == null) {
      // This will be populated when the adapter generates the bitmap
    }
  }
}