nestedEntry property

BksKeyEntry get nestedEntry

Gets the nested key entry. Throws if not decrypted.

Implementation

BksKeyEntry get nestedEntry {
  if (!isDecrypted()) {
    throw StateError('Entry not decrypted. Call decrypt() first.');
  }
  return _nestedEntry!;
}