zoomOut method

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

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

Implementation

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

  await zoom(profileToken, Vector1D(x: step));
}