xWingPublicKey property

Uint8List get xWingPublicKey

This APKAM keypair's X-Wing public key (raw bytes). Throws StateError until register has completed.

Implementation

Uint8List get xWingPublicKey {
  if (_xWingPublicKey == null) {
    throw StateError('register() has not been called');
  }
  return _xWingPublicKey!;
}