VecVecDMatch.fromPointer constructor

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

Implementation

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