getZoomScale method

  1. @override
Future<double?> getZoomScale()

Gets the current zoom scale of the WebView.

Officially Supported Platforms/Implementations:

Implementation

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