zoomOut method
A helper method to perform a single step
of a relativeMove on the
negative y axis (farther)
Implementation
Future<void> zoomOut(String profileToken, [int step = 25]) async {
await zoom(profileToken, Zoom.fromInt(0 - step));
}
A helper method to perform a single step
of a relativeMove on the
negative y axis (farther)
Future<void> zoomOut(String profileToken, [int step = 25]) async {
await zoom(profileToken, Zoom.fromInt(0 - step));
}