remoteStaticKey property

Uint8List get remoteStaticKey

Implementation

Uint8List get remoteStaticKey {
  final key = _state.remoteStaticKey;
  if (key == null) {
    throw StateError('Remote static key not available');
  }
  return key;
}