NativeHandle<R extends NativeResource> constructor

NativeHandle<R extends NativeResource>(
  1. R res
)

Implementation

NativeHandle(R res) {
  _res = res;
  // token = this object; detach using the same token
  _finalizer.attach(this, res, detach: this);
}