remove_GamepadRemoved static method

void remove_GamepadRemoved(
  1. int token
)

Implementation

static void remove_GamepadRemoved(int token) {
  final activationFactoryPtr =
      CreateActivationFactory(_className, IID_IGamepadStatics);
  final object = IGamepadStatics.fromRawPointer(activationFactoryPtr);

  try {
    return object.remove_GamepadRemoved(token);
  } finally {
    object.release();
  }
}