KeyValueInterval constructor

const KeyValueInterval([
  1. Comparable? _startKey,
  2. Comparable? _startValue,
  3. Comparable? _endKey,
  4. Comparable? _endValue,
])

Creates a interval from individual keys and values.

Implementation

const KeyValueInterval(
    [this._startKey, this._startValue, this._endKey, this._endValue]);