IdWhereClause class

A where clause traversing the primary index (ids).

Inheritance

Constructors

IdWhereClause.any()
const
IdWhereClause.between({int? lower, bool includeLower = true, int? upper, bool includeUpper = true})
const
IdWhereClause.equalTo({required int value})
const
IdWhereClause.greaterThan({required int lower, bool includeLower = true})
const
IdWhereClause.lessThan({required int upper, bool includeUpper = true})
const

Properties

hashCode int
The hash code for this object.
no setterinherited
includeLower bool
Whether the lower bound should be included in the results.
final
includeUpper bool
Whether the upper bound should be included in the results.
final
lower int?
The lower bound id or null for unbounded.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
upper int?
The upper bound id or null for unbounded.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited