ConversationItemDeletedEvent.fromJson constructor
Creates a ConversationItemDeletedEvent from JSON.
Implementation
factory ConversationItemDeletedEvent.fromJson(Map<String, dynamic> json) {
return ConversationItemDeletedEvent(
eventId: json['event_id'] as String,
itemId: json['item_id'] as String,
);
}