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