invokeScriptRaw method
Invoke a script and return result as a raw string.
Parameters:
- String scriptId: The ID of the script to invoke. (required)
- Map<String, Object> params: Represents key/value pairs parameters to be injected into script
Implementation
Future<String> invokeScriptRaw(String scriptId,
{Map<String, Object>? params}) async {
return service.postScriptsIDInvoke(scriptId,
scriptInvocationParams: ScriptInvocationParams(params: params));
}