File tree Expand file tree Collapse file tree 1 file changed +8
-12
lines changed
Expand file tree Collapse file tree 1 file changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -9,28 +9,24 @@ part 'condition.g.dart';
99
1010/// condition operation for basic conditions
1111enum ConditionOperation {
12- /// equals to operator. Checks if the value of the variable is equal to the
13- /// value provided.
12+ /// Checks if the value of the variable is equal to the value provided.
1413 equalsTo,
1514
16- /// not equals to operator. Checks if the value of the variable is not equal
17- /// to the value provided.
15+ /// Checks if the value of the variable is not equal to the value provided.
1816 notEqualsTo,
1917
20- /// greater than operator. Checks if the value of the variable is greater
21- /// than the value provided.
18+ /// Checks if the value of the variable is greater than the value provided.
2219 greaterThan,
2320
24- /// less than operator. Checks if the value of the variable is less than the
25- /// value provided.
21+ /// Checks if the value of the variable is less than the value provided.
2622 lessThan,
2723
28- /// greater than or equal to operator. Checks if the value of the variable is
29- /// greater than or equal to the value provided.
24+ /// Checks if the value of the variable is greater than or equal to the
25+ /// value provided.
3026 greaterThanOrEqualTo,
3127
32- /// less than or equal to operator. Checks if the value of the variable is
33- /// less than or equal to the value provided.
28+ /// Checks if the value of the variable is less than or equal to the
29+ /// value provided.
3430 lessThanOrEqualTo;
3531
3632 /// label for the operation
You can’t perform that action at this time.
0 commit comments