moveRight method

Future<void> moveRight(
  1. String profileToken, [
  2. double step = 0.025
])

A helper method to perform a single step of a relativeMove on the positive x axis (right)

Implementation

Future<void> moveRight(String profileToken, [double step = 0.025]) async {
  loggy.debug('moveRight');

  await move(profileToken, direction: Vector2D(x: step, y: 0));
}