RealtimeErrorInfo.fromJson constructor

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

Implementation

factory RealtimeErrorInfo.fromJson(Map<String, dynamic> j) => RealtimeErrorInfo(
      message: j['message'],
      type: j['type'],
      code: j['code'],
      clientEventId: j['event_id'],
      param: j['param'],
    );