getEntryByIndex method
- int index
Fetches an entry by its index.
The index
parameter specifies the position of the entry in the list.
Returns the Entry at the specified index.
Implementation
Entry getEntryByIndex(int index) {
return Entry(list: handle, position: index);
}