createDOOPostMessage function
Implementation
String createDOOPostMessage(object) {
final stringfyObject = "${DOO_PREFIX}${jsonEncode(object)}";
final script = 'window.postMessage(\'${stringfyObject}\');';
return script;
}
String createDOOPostMessage(object) {
final stringfyObject = "${DOO_PREFIX}${jsonEncode(object)}";
final script = 'window.postMessage(\'${stringfyObject}\');';
return script;
}