I want to pass data from flutter to webview
My data is defined like this,
var data = {
   "id": "hweqetwyqte"
};
I am passing data like below in webview,
webViewController.evaluateJavascript('''
 t._selectItem($data); // this is not working --> I want this to work
 t._selectItem({"id": "hweqetwyqte"}); // this is working
''');
Any help would be appreciated!!
 
                        
Try