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