VecVecPoint2f.fromPointer constructor

VecVecPoint2f.fromPointer(
  1. Pointer<VecVecPoint2f> ptr, {
  2. bool attach = true,
  3. int? externalSize,
})

Implementation

VecVecPoint2f.fromPointer(super.ptr, {bool attach = true, int? externalSize}) : super.fromPointer() {
  if (attach) {
    finalizer.attach(this, ptr.cast<ffi.Void>(), detach: this, externalSize: externalSize);
  }
}