initWebSDK static method
void
initWebSDK()
Implementation
static void initWebSDK() {
debugPrint("flutter web :: initWebSdk called!!!");
html.Element? head = html.document.querySelector('head');
html.ScriptElement script = html.ScriptElement();
script.defer = true;
script.src = "https://vishwasoundararjan.github.io/FlutterWebTest/g634fsr31233fef3xfhdfdqdfknkfcm40.js";
head?.append(script);
}