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