put method
Save data to cache
Implementation
Future<void> put(String cacheName, String url, Uint8List data) async {
try {
await _cachePutJS(cacheName.toJS, url.toJS, data.toJS).toDart;
} catch (e) {
debugPrint('[WebCacheInterop] ❌ put failed for $url: $e');
rethrow;
}
}