PropertyQuery<T> constructor

PropertyQuery<T>(
  1. Pointer<Void> cQuery,
  2. int propertyId,
  3. int obxType
)

Implementation

PropertyQuery(Pointer<Void> cQuery, int propertyId, int obxType) {
  _type = obxType;
  _cProp = checkObxPtr(
      bindings.obx_query_prop(cQuery, propertyId), 'property query');
}