compile method

  1. @MPI(name: "mesh.workflow.compile")
Future<String?> compile(
  1. WorkChart chart, {
  2. Context? ctx,
})

Compile workflow in engine. Return workflow code

Implementation

@MPI(name: "mesh.workflow.compile")
Future<String?> compile(WorkChart chart, {Context? ctx}) {
  throw UnimplementedError('compile() has not been implemented.');
}