bytes property

List<int> bytes

Private key bytes.

The bytes are destroyed when destroy is called. After that, this getter throws StateError.

Implementation

List<int> get bytes {
  final bytes = _bytes;
  if (bytes.hasBeenDestroyed) {
    throw _destroyedError();
  }
  return bytes;
}