I am using the inappwebview https://pub.dev/packages/flutter_inappwebview plugin for displaying the webview but I am getting an SSL error.
E/chromium(15303): [ERROR:ssl_client_socket_impl.cc(946)] handshake failed; returned -1, SSL error code 1, net_error -200
onReceivedServerTrustAuthRequest: (InAppWebViewController controller, ServerTrustChallenge challenge) async {
print('ignoring the ssl');
return ServerTrustAuthResponse(action: ServerTrustAuthResponseAction.PROCEED);
},
But it is not working.
Can I get any suggestions for solving the error?