compile method

  1. @override
Future<String?> compile(
  1. WorkChart chart, {
  2. Context? ctx,
})
override

Compile workflow in engine. Return workflow code

Implementation

@override
Future<String?> compile(WorkChart chart, {Context? ctx}) async {
  return await _h.invoke(this, _methods['compile']!, [chart], ctx);
}