RealtimeError constructor

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

Creates a RealtimeError.

Implementation

const RealtimeError({
  required this.type,
  this.code,
  required this.message,
  this.param,
  this.eventId,
});