ITimerControl constructor

ITimerControl(
  1. FbInterface self
)

Implementation

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