getZoomScale method
Gets the current zoom scale of the WebView.
Officially Supported Platforms/Implementations:
- Android native WebView
- iOS (Official API - UIScrollView.zoomScale)
Implementation
@override
Future<double?> getZoomScale() async {
Map<String, dynamic> args = <String, dynamic>{};
return await channel?.invokeMethod<double?>('getZoomScale', args);
}