onProgressChanged method
Notify the host application that a file should be downloaded.
Implementation
@override
void onProgressChanged(android_webview.WebView webView, int progress) {
if (_onProgress != null) {
_onProgress!(progress);
}
}
Notify the host application that a file should be downloaded.
@override
void onProgressChanged(android_webview.WebView webView, int progress) {
if (_onProgress != null) {
_onProgress!(progress);
}
}