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