free method
Frees the entry list.
Throws an AskarEntryListException if the entry list fails to free.
Implementation
void free() {
try {
askarEntryListFree(this);
} catch (e) {
throw AskarEntryListException('Failed to free entry list: $e');
}
}