remove_DataChanged method

void remove_DataChanged(
  1. int token
)

Implementation

void remove_DataChanged(int token) {
  final hr = _thisPtr.ref.vtable
      .elementAt(16)
      .cast<
          Pointer<NativeFunction<HRESULT Function(Pointer, Uint64 token)>>>()
      .value
      .asFunction<
          int Function(Pointer, int token)>()(_thisPtr.ref.lpVtbl, token);

  if (FAILED(hr)) throw WindowsException(hr);
}