evalJS function
Call eval()
with the content of scriptCode
and returns the result.
Implementation
dynamic evalJS(String scriptCode) =>
globalContext.callMethod('eval'.toJS, scriptCode.toJS).dartify();
Call eval()
with the content of scriptCode
and returns the result.
dynamic evalJS(String scriptCode) =>
globalContext.callMethod('eval'.toJS, scriptCode.toJS).dartify();