zoomIn method

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

A helper method to perform a single step of a relativeMove on the positive z axis (closer)

Implementation

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

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