count method
inherited
Returns the count of non-null values.
Implementation
int count() {
final ptr = allocate<Uint64>(count: 1);
try {
checkObx(bindings.obx_query_prop_count(_cProp, ptr, nullptr));
return ptr.value;
} finally {
free(ptr);
}
}