getValue method
- int index
 
Gets the value of the entry at the specified index.
Throws an AskarEntryListException if the value retrieval fails.
Implementation
Uint8List getValue(int index) {
  try {
    return askarEntryListGetValue(this, index).getValueOrException();
  } catch (e) {
    throw AskarEntryListException('Failed to get value: $e');
  }
}