valuesBetween abstract method
Returns an iterable which contains all values starting with the value
associated with startKey
(inclusive) to the value associated with
endKey
(inclusive).
If startKey
does not exist, an empty iterable is returned. If endKey
does not exist or is before startKey
, it is ignored.
The values are in the same order as their keys.
Implementation
Iterable<E> valuesBetween({dynamic startKey, dynamic endKey});