We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27df654 commit 6c8d28fCopy full SHA for 6c8d28f
objectbox/lib/src/query/property.dart
@@ -1,6 +1,6 @@
1
part of query;
2
3
-/// Property query base
+/// Property query base.
4
abstract class PropertyQuery<T> {
5
final Pointer<OBX_query_prop> _cProp;
6
final int _type;
objectbox/lib/src/query/query.dart
@@ -269,6 +269,7 @@ enum _ConditionOp {
269
between,
270
}
271
272
+/// A [Query] condition base class.
273
abstract class Condition {
274
// using & because && is not overridable
275
Condition operator &(Condition rh) => and(rh);
0 commit comments