RealtimeErrorInfo constructor

const RealtimeErrorInfo({
  1. required String message,
  2. required String type,
  3. String? code,
  4. String? clientEventId,
  5. String? param,
})

Implementation

const RealtimeErrorInfo({
  required this.message,
  required this.type,
  this.code,
  this.clientEventId,
  this.param,
});