getEntryByIndex method

KeyEntry getEntryByIndex(
  1. int index
)

Gets a key entry by its index.

Returns a KeyEntry at the specified index.

Implementation

KeyEntry getEntryByIndex(int index) {
  return KeyEntry(list: handle, pos: index);
}