RealtimeResponseCancelEvent.fromJson constructor

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

Implementation

factory RealtimeResponseCancelEvent.fromJson(Map<String, dynamic> j) => RealtimeResponseCancelEvent(
      eventId: j['event_id'] as String?,
      responseId: j['response_id'] as String?,
    );