SecureSession constructor

const SecureSession({
  1. required IHandlerCipher<ICipher> asymmetricHandler,
  2. required IHandlerCipher<ICipher> symmetricHandler,
  3. required NegotiationResult negotiationResult,
  4. required String sharedSecret,
  5. required DateTime establishedAt,
})

Implementation

const SecureSession({
  required this.asymmetricHandler,
  required this.symmetricHandler,
  required this.negotiationResult,
  required this.sharedSecret,
  required this.establishedAt,
});