Condition class

The Condition class represents a condition used in a database query.

A condition consists of a columnName, an operator, and a value. The columnName represents the name of the column in the database table. The operator represents the comparison operator used in the condition. The value represents the value to be compared against in the condition.

Constructors

Condition(String columnName, String operator, dynamic value)
Constructs a new Condition with the given columnName, operator, and value.

Properties

columnName String
final
hashCode int
The hash code for this object.
no setterinherited
operator String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value → dynamic
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
Returns a string representation of the condition.
override

Operators

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