I am Developing an android app which has a Flutter WebView Plugin to show a web page. It works perfectly on my phone (Android 8.1 LG V20). but on my friends phone (Android 9 xiaomi note 7 pro) it shows this error: 
My Code: flutter_webview_plugin: ^0.3.8
import 'package:flutter/material.dart';
import 'package:flutter_webview_plugin/flutter_webview_plugin.dart';
class WebPage extends StatefulWidget {
final String url;
WebPage({
this.url,
});
@override
_WebPageState createState() => _WebPageState();
}
class _WebPageState extends State<WebPage> {
@override
void initState() {
super.initState();
print('url = ' + widget.url);
}
@override
Widget build(BuildContext context) {
String link = widget.url;
return WebviewScaffold(
url: link,
appBar: new AppBar(
centerTitle: true,
backgroundColor: Colors.green,
),
displayZoomControls: true,
);
}
}
Any help would be appreciated.