updateProgressShow method

void updateProgressShow(
  1. bool isShow
)

Implementation

void updateProgressShow(bool isShow) {
  if(webView?.onProgressShow != null) {
    webView?.onProgressShow!(isShow);
  }
}