WhereFilter enum

Inheritance

Constructors

WhereFilter(String proto)
const

Values

lessThan → const WhereFilter
const WhereFilter('LESS_THAN')
lessThanOrEqual → const WhereFilter
const WhereFilter('LESS_THAN_OR_EQUAL')
equal → const WhereFilter
const WhereFilter('EQUAL')
notEqual → const WhereFilter
const WhereFilter('NOT_EQUAL')
greaterThanOrEqual → const WhereFilter
const WhereFilter('GREATER_THAN_OR_EQUAL')
greaterThan → const WhereFilter
const WhereFilter('GREATER_THAN')
isIn → const WhereFilter
const WhereFilter('IN')
notIn → const WhereFilter
const WhereFilter('NOT_IN')
arrayContains → const WhereFilter
const WhereFilter('ARRAY_CONTAINS')
arrayContainsAny → const WhereFilter
const WhereFilter('ARRAY_CONTAINS_ANY')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
proto String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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

Constants

values → const List<WhereFilter>
A constant List of the values in this enum, in order of their declaration.