Boundary constructor
Boundary({
- RecordSnapshot<
Key?, Value?> ? record, - bool? include,
- List<
Object?> ? values,
Create a boundary from a set of values or a given record
if include is true, the record at the boundary will be included
Number of values should match the number or sort orders
values superseeds record
Implementation
factory Boundary({
RecordSnapshot? record,
bool? include,
List<Object?>? values,
}) {
return SembastBoundary(record: record, include: include, values: values);
}