@@ -563,7 +563,7 @@ class JavaScriptChannelFlutterApiImpl extends JavaScriptChannelFlutterApi {
563563 .getInstanceWithWeakReference (instanceId) as JavaScriptChannel ? ;
564564 assert (
565565 instance != null ,
566- 'InstanceManager does not contain an JavaScriptChannel with instanceId: $instanceId ' ,
566+ 'InstanceManager does not contain a JavaScriptChannel with instanceId: $instanceId ' ,
567567 );
568568 instance! .postMessage (message);
569569 }
@@ -617,11 +617,11 @@ class WebViewClientFlutterApiImpl extends WebViewClientFlutterApi {
617617 .getInstanceWithWeakReference (webViewInstanceId) as WebView ? ;
618618 assert (
619619 instance != null ,
620- 'InstanceManager does not contain an WebViewClient with instanceId: $instanceId ' ,
620+ 'InstanceManager does not contain a WebViewClient with instanceId: $instanceId ' ,
621621 );
622622 assert (
623623 webViewInstance != null ,
624- 'InstanceManager does not contain an WebView with instanceId: $webViewInstanceId ' ,
624+ 'InstanceManager does not contain a WebView with instanceId: $webViewInstanceId ' ,
625625 );
626626 if (instance! .onPageFinished != null ) {
627627 instance.onPageFinished !(webViewInstance! , url);
@@ -636,11 +636,11 @@ class WebViewClientFlutterApiImpl extends WebViewClientFlutterApi {
636636 .getInstanceWithWeakReference (webViewInstanceId) as WebView ? ;
637637 assert (
638638 instance != null ,
639- 'InstanceManager does not contain an WebViewClient with instanceId: $instanceId ' ,
639+ 'InstanceManager does not contain a WebViewClient with instanceId: $instanceId ' ,
640640 );
641641 assert (
642642 webViewInstance != null ,
643- 'InstanceManager does not contain an WebView with instanceId: $webViewInstanceId ' ,
643+ 'InstanceManager does not contain a WebView with instanceId: $webViewInstanceId ' ,
644644 );
645645 if (instance! .onPageStarted != null ) {
646646 instance.onPageStarted !(webViewInstance! , url);
@@ -661,11 +661,11 @@ class WebViewClientFlutterApiImpl extends WebViewClientFlutterApi {
661661 .getInstanceWithWeakReference (webViewInstanceId) as WebView ? ;
662662 assert (
663663 instance != null ,
664- 'InstanceManager does not contain an WebViewClient with instanceId: $instanceId ' ,
664+ 'InstanceManager does not contain a WebViewClient with instanceId: $instanceId ' ,
665665 );
666666 assert (
667667 webViewInstance != null ,
668- 'InstanceManager does not contain an WebView with instanceId: $webViewInstanceId ' ,
668+ 'InstanceManager does not contain a WebView with instanceId: $webViewInstanceId ' ,
669669 );
670670 // ignore: deprecated_member_use_from_same_package
671671 if (instance! .onReceivedError != null ) {
@@ -691,11 +691,11 @@ class WebViewClientFlutterApiImpl extends WebViewClientFlutterApi {
691691 .getInstanceWithWeakReference (webViewInstanceId) as WebView ? ;
692692 assert (
693693 instance != null ,
694- 'InstanceManager does not contain an WebViewClient with instanceId: $instanceId ' ,
694+ 'InstanceManager does not contain a WebViewClient with instanceId: $instanceId ' ,
695695 );
696696 assert (
697697 webViewInstance != null ,
698- 'InstanceManager does not contain an WebView with instanceId: $webViewInstanceId ' ,
698+ 'InstanceManager does not contain a WebView with instanceId: $webViewInstanceId ' ,
699699 );
700700 if (instance! .onReceivedRequestError != null ) {
701701 instance.onReceivedRequestError !(
@@ -718,11 +718,11 @@ class WebViewClientFlutterApiImpl extends WebViewClientFlutterApi {
718718 .getInstanceWithWeakReference (webViewInstanceId) as WebView ? ;
719719 assert (
720720 instance != null ,
721- 'InstanceManager does not contain an WebViewClient with instanceId: $instanceId ' ,
721+ 'InstanceManager does not contain a WebViewClient with instanceId: $instanceId ' ,
722722 );
723723 assert (
724724 webViewInstance != null ,
725- 'InstanceManager does not contain an WebView with instanceId: $webViewInstanceId ' ,
725+ 'InstanceManager does not contain a WebView with instanceId: $webViewInstanceId ' ,
726726 );
727727 if (instance! .requestLoading != null ) {
728728 instance.requestLoading !(
@@ -744,11 +744,11 @@ class WebViewClientFlutterApiImpl extends WebViewClientFlutterApi {
744744 .getInstanceWithWeakReference (webViewInstanceId) as WebView ? ;
745745 assert (
746746 instance != null ,
747- 'InstanceManager does not contain an WebViewClient with instanceId: $instanceId ' ,
747+ 'InstanceManager does not contain a WebViewClient with instanceId: $instanceId ' ,
748748 );
749749 assert (
750750 webViewInstance != null ,
751- 'InstanceManager does not contain an WebView with instanceId: $webViewInstanceId ' ,
751+ 'InstanceManager does not contain a WebView with instanceId: $webViewInstanceId ' ,
752752 );
753753 if (instance! .urlLoading != null ) {
754754 instance.urlLoading !(webViewInstance! , url);
@@ -798,7 +798,7 @@ class DownloadListenerFlutterApiImpl extends DownloadListenerFlutterApi {
798798 .getInstanceWithWeakReference (instanceId) as DownloadListener ? ;
799799 assert (
800800 instance != null ,
801- 'InstanceManager does not contain an DownloadListener with instanceId: $instanceId ' ,
801+ 'InstanceManager does not contain a DownloadListener with instanceId: $instanceId ' ,
802802 );
803803 instance! .onDownloadStart (
804804 url,
@@ -858,11 +858,11 @@ class WebChromeClientFlutterApiImpl extends WebChromeClientFlutterApi {
858858 .getInstanceWithWeakReference (webViewInstanceId) as WebView ? ;
859859 assert (
860860 instance != null ,
861- 'InstanceManager does not contain an WebChromeClient with instanceId: $instanceId ' ,
861+ 'InstanceManager does not contain a WebChromeClient with instanceId: $instanceId ' ,
862862 );
863863 assert (
864864 webViewInstance != null ,
865- 'InstanceManager does not contain an WebView with instanceId: $webViewInstanceId ' ,
865+ 'InstanceManager does not contain a WebView with instanceId: $webViewInstanceId ' ,
866866 );
867867 if (instance! .onProgressChanged != null ) {
868868 instance.onProgressChanged !(webViewInstance! , progress);
0 commit comments