SessionData constructor

SessionData({
  1. required String topic,
  2. required Relay relay,
  3. required int expiry,
  4. required bool acknowledged,
  5. required String controller,
  6. required Map<String, Namespace> namespaces,
  7. required ConnectionMetadata self,
  8. required ConnectionMetadata peer,
  9. Map<String, RequiredNamespace>? requiredNamespaces,
})

Implementation

SessionData({
  required this.topic,
  required this.relay,
  required this.expiry,
  required this.acknowledged,
  required this.controller,
  required this.namespaces,
  required this.self,
  required this.peer,
  this.requiredNamespaces,
});