exec method
Exec the script with name. 执行脚本,此处为规则引擎服务化执行接口.
Implementation
@override
Future<String?> exec(
String code,
Map<String, String> args,
String dft, {
Context? ctx,
}) async {
return await _h.invoke(this, _methods['exec']!, [code, args, dft], ctx);
}