moveDown method
A helper method to perform a single step
of a relativeMove on the
negative y axis (down)
Implementation
Future<void> moveDown(String profileToken, [double step = -0.025]) async {
loggy.debug('moveDown');
await move(profileToken, direction: Vector2D(y: step, x: 0));
}