zoomTo method
Implementation
@override
Future<void> zoomTo({required double zoom}) async {
try {
await methodChannel.invokeMethod('zoomTo', {'value': zoom});
} on PlatformException catch (e) {
throw Exception("Failed to zoom to: '${e.message}'.");
}
}