NegotiationResult constructor

const NegotiationResult({
  1. required KeyExchangeAlgorithm keyExchange,
  2. required CryptoAlgorithm asymmetric,
  3. required CryptoAlgorithm symmetric,
  4. required String localPeerId,
  5. required String remotePeerId,
  6. required bool isInitiator,
})

Implementation

const NegotiationResult({
  required this.keyExchange,
  required this.asymmetric,
  required this.symmetric,
  required this.localPeerId,
  required this.remotePeerId,
  required this.isInitiator,
});