setup method

  1. @override
Future<void> setup(
  1. String code,
  2. String version, {
  3. Context? ctx,
})
override

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

Implementation

@override
Future<void> setup(String code, String version, {Context? ctx}) async {
  return await _h.invoke(this, _methods['setup']!, [code, version], ctx);
}