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