exec method

  1. @override
Future<String?> exec(
  1. String code,
  2. Map<String, String> args,
  3. String dft, {
  4. Context? ctx,
})
override

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);
}