getLongCode method
Get the long identifier associated with this script.
Implementation
String? getLongCode() {
final String jscode1 = 'new ScriptInfo("$script").getLongCode()';
final String result = ILibJS.instance.evaluate(jscode1).stringResult;
if (result == null || result.isEmpty || result == 'null') {
return null;
}
return result;
}