SdbUpperBoundary<T extends Object> constructor
SdbUpperBoundary<T extends Object> (
- T value, {
- bool? include = false,
Create a boundary from a value
if include
is true (not null), the value at the boundary will be included.
Implementation
factory SdbUpperBoundary(T value, {bool? include = false}) {
return DbBoundaryImpl(value, include ?? false);
}