close method

void close()

Close the property query, freeing its resources

Implementation

void close() {
  if (!_closed) {
    _closed = true;
    _finalizer.detach(this);
    checkObx(C.query_prop_close(_cProp));
  }
}