SocketData constructor

SocketData({
  1. String? id,
  2. String? server,
  3. String? socketPath,
  4. String? namespace,
  5. String? website,
  6. String? tokenType,
  7. int? iat,
  8. int? exp,
})

Implementation

SocketData({
  this.id,
  this.server,
  this.socketPath,
  this.namespace,
  this.website,
  this.tokenType,
  this.iat,
  this.exp,
});