FieldGreaterThan class
(en) Query node for "field > value" operation.
(ja) "field > value" 演算のためのクエリノード。
Constructors
- FieldGreaterThan(String field, dynamic value, {EnumValueType vType = EnumValueType.auto_})
- (en) Query node for "field > value" operation. If you try to compare objects that cannot be compared in magnitude, such as null or bool, the result will always be False.
-
FieldGreaterThan.fromDict(Map<
String, dynamic> src) -
(en) Restore this object from the dictionary.
factory
Properties
- field → String
-
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → dynamic
-
final
- vType ↔ EnumValueType
-
getter/setter pair
Methods
-
evaluate(
Map< String, dynamic> data) → bool -
(en) Returns true if the object matches the calculation.
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toDict(
) → Map< String, dynamic> -
(en) Convert the object to a dictionary.
The returned dictionary can only contain primitive types, null, lists
or maps with only primitive elements.
If you want to include other classes,
the target class should inherit from this class and chain calls toDict.
override
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited