recvKey property

SecretKey get recvKey

Implementation

SecretKey get recvKey {
  final key = _state.recvKey;
  if (key == null) {
    throw StateError('Receive key not initialized');
  }
  return key;
}