RealtimeErrorEvent.fromJson constructor
Implementation
factory RealtimeErrorEvent.fromJson(Map<String, dynamic> j) => RealtimeErrorEvent(
eventId: j['event_id'],
error: RealtimeErrorInfo.fromJson(j['error'] as Map<String, dynamic>),
);