zoomOut method

  1. @SupportedPlatforms.new(platforms: [AndroidPlatform(apiName: 'WebView.zoomOut', apiUrl: 'https://developer.android.com/reference/android/webkit/WebView#zoomOut()')])
Future<bool> zoomOut()

Performs zoom out in this WebView. Returns true if zoom out succeeds, false if no zoom changes.

Officially Supported Platforms/Implementations:

Use the PlatformInAppWebViewController.isMethodSupported method to check if this method is supported at runtime.

Implementation

@SupportedPlatforms(
  platforms: [
    AndroidPlatform(
      apiName: 'WebView.zoomOut',
      apiUrl:
          'https://developer.android.com/reference/android/webkit/WebView#zoomOut()',
    ),
  ],
)
Future<bool> zoomOut() {
  throw UnimplementedError(
    '${PlatformInAppWebViewControllerMethod.zoomOut.name} is not implemented on the current platform',
  );
}