SessionStruct constructor

const SessionStruct({
  1. required String topic,
  2. required RelayerProtocolOptions relay,
  3. required int expiry,
  4. required bool acknowledged,
  5. required String controller,
  6. required SessionNamespaces namespaces,
  7. ProposalRequiredNamespaces? requiredNamespaces,
  8. required SessionPublicKeyMetadata self,
  9. required SessionPublicKeyMetadata peer,
})

Implementation

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