KeyEntry constructor

KeyEntry({
  1. required KeyEntryListHandle list,
  2. required int pos,
})

Constructs an instance of KeyEntry.

Implementation

KeyEntry({required KeyEntryListHandle list, required int pos})
  : _list = list,
    _pos = pos;