moveLeft method

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

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

Implementation

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

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