zoomOut method
Performs zoom out in this WebView.
Returns true
if zoom out succeeds, false
if no zoom changes.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebView.zoomOut)
Implementation
@override
Future<bool> zoomOut() async {
Map<String, dynamic> args = <String, dynamic>{};
return await channel?.invokeMethod<bool>('zoomOut', args) ?? false;
}