IPluginModule constructor

IPluginModule(
  1. FbInterface self
)

Implementation

IPluginModule(super.self) {
  startIndex = super.startIndex + super.methodCount;
  methodCount = 2;
  var idx = startIndex;
  _doClean = Pointer<NativeFunction<Void Function(FbInterface)>>.fromAddress(
    vtable[idx++],
  ).asFunction();
  _threadDetach =
      Pointer<NativeFunction<Void Function(FbInterface)>>.fromAddress(
        vtable[idx++],
      ).asFunction();
}