getZoomScale method

Future<double?> getZoomScale()

Gets the current zoom scale of the WebView.

Supported Platforms/Implementations:

Implementation

Future<double?> getZoomScale() async {
  Map<String, dynamic> args = <String, dynamic>{};
  return await _channel.invokeMethod('getZoomScale', args);
}