CacheStorageListUpdatedEvent.fromJson constructor

CacheStorageListUpdatedEvent.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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