moveLeft method
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));
}