zoomIn method

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

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

Implementation

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