UnknownSystemEvent constructor

const UnknownSystemEvent({
  1. required Object? rawPayload,
  2. required String reason,
  3. Object? rawType,
})

Creates an unknown event wrapper.

Implementation

const UnknownSystemEvent({
  required this.rawPayload,
  required this.reason,
  this.rawType,
});