zoomIn method
A helper method to perform a single step
of a relativeMove on the
positive z axis (closer)
Implementation
Future<void> zoomIn(String profileToken, [int step = 25]) async {
await zoom(profileToken, Zoom.fromInt(step));
}
A helper method to perform a single step
of a relativeMove on the
positive z axis (closer)
Future<void> zoomIn(String profileToken, [int step = 25]) async {
await zoom(profileToken, Zoom.fromInt(step));
}