zoomOut method
Zoom out on the map
Implementation
Future<void> zoomOut() async {
try {
await _channel.invokeMethod('zoomOut');
} catch (e) {
debugPrint('Error zooming out: $e');
}
}
Zoom out on the map
Future<void> zoomOut() async {
try {
await _channel.invokeMethod('zoomOut');
} catch (e) {
debugPrint('Error zooming out: $e');
}
}