WebSocketEvent constructor

WebSocketEvent({
  1. required String event,
  2. required DateTime timestamp,
  3. int? frameNumber,
  4. String? direction,
  5. String? opcode,
  6. int? payloadSize,
  7. String? errorType,
  8. String? errorMessage,
  9. Map<String, dynamic>? arguments,
})

Implementation

WebSocketEvent({
  required this.event,
  required this.timestamp,
  this.frameNumber,
  this.direction,
  this.opcode,
  this.payloadSize,
  this.errorType,
  this.errorMessage,
  this.arguments,
});