QueryArgsV2 class

Supply query to query the collection based on key field and the values supplied to various arguments Please refer to firestore documentation for understanding various operators of the query

Constructors

QueryArgsV2(dynamic key, {dynamic isEqualTo, dynamic isLessThan, dynamic isNotEqualTo, dynamic isLessThanOrEqualTo, dynamic isGreaterThan, dynamic arrayContains, List? arrayContainsAny, List? whereIn, List? whereNotIn, bool? isNull, dynamic isGreaterThanOrEqualTo})
Create instance of QueryArgsV2

Properties

arrayContains → dynamic
performs array contains check
final
arrayContainsAny List?
performs array contains any check
final
hashCode int
The hash code for this object.
no setterinherited
isEqualTo → dynamic
performs equality == check
final
isGreaterThan → dynamic
performs greater than > check
final
isGreaterThanOrEqualTo → dynamic
performs greater than or equal to >= check
final
isLessThan → dynamic
performs less than < check
final
isLessThanOrEqualTo → dynamic
performs less than or equal to <= check
final
isNotEqualTo → dynamic
performs equality != check
final
isNull bool?
performs if is null check
final
key → dynamic
Field to match
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
whereIn List?
performs where in check
final
whereNotIn List?
performs where in check
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