CacheStorageContentUpdatedEvent.fromJson constructor
Implementation
factory CacheStorageContentUpdatedEvent.fromJson(Map<String, dynamic> json) {
return CacheStorageContentUpdatedEvent(
origin: json['origin'] as String,
storageKey: json['storageKey'] as String,
cacheName: json['cacheName'] as String,
);
}