isLoading method
Check if the WebView instance is in a loading state.
Officially Supported Platforms/Implementations:
- Android native WebView
- iOS
- MacOS
- Web
- Windows
Implementation
@override
Future<bool> isLoading() async {
return await _channel.invokeMethod<bool>('isLoading') ?? false;
}