Point3i.fromPointer constructor

Point3i.fromPointer(
  1. Pointer<Point3i> ptr, [
  2. bool attach = true
])

Implementation

Point3i.fromPointer(ffi.Pointer<cvg.Point3i> ptr, [bool attach = true]) : super.fromPointer(ptr) {
  if (attach) {
    finalizer.attach(this, ptr.cast(), detach: this);
  }
}