setup method

  1. @MPI(name: "mesh.vmc.setup")
Future<void> setup(
  1. String code,
  2. String version, {
  3. Context? ctx,
})

Setup set up the script. 编译安装脚本到运行时中,为发布语意.

Implementation

@MPI(name: "mesh.vmc.setup")
Future<void> setup(String code, String version, {Context? ctx}) {
  throw UnimplementedError('setup() has not been implemented.');
}