ConversationItemDeletedEvent.fromJson constructor

ConversationItemDeletedEvent.fromJson(
  1. Map<String, dynamic> j
)

Implementation

factory ConversationItemDeletedEvent.fromJson(Map<String, dynamic> j) => ConversationItemDeletedEvent(
      eventId: j['event_id'] as String,
      itemId: j['item_id'] as String,
    );