SocketPacket constructor

const SocketPacket({
  1. required String event,
  2. dynamic data,
  3. String? id,
  4. String? namespace,
})

Implementation

const SocketPacket({
  required this.event,
  this.data,
  this.id,
  this.namespace,
});