getScale method
- @SupportedPlatforms.new(platforms: [AndroidPlatform(), IOSPlatform(), MacOSPlatform()])
- @Deprecated('Use getZoomScale instead')
Use getZoomScale instead.
Officially Supported Platforms/Implementations:
- Android WebView
- iOS WKWebView
- macOS WKWebView
Use the PlatformInAppWebViewController.isMethodSupported method to check if this method is supported at runtime.
Implementation
@SupportedPlatforms(
platforms: [AndroidPlatform(), IOSPlatform(), MacOSPlatform()],
)
@Deprecated('Use getZoomScale instead')
Future<double?> getScale() {
throw UnimplementedError(
'${PlatformInAppWebViewControllerMethod.getScale.name} is not implemented on the current platform',
);
}