dispose method

void dispose()

Releases the native query resources.

Must be called even if no reply was sent. Safe to call multiple times.

Implementation

void dispose() {
  if (_disposed) return;
  _disposed = true;
  bindings.zd_query_drop(Pointer.fromAddress(_handle).cast());
}