CursorEntry constructor

CursorEntry({
  1. required List<int> key,
  2. required List<int> data,
})

Creates a cursor entry with raw binary key and data

Implementation

CursorEntry({required this.key, required this.data});