natural static method

EntryFunction natural(
  1. String module,
  2. String func,
  3. List<TypeTag> typeArgs,
  4. List<Uint8List> args,
)

Implementation

static EntryFunction natural(String module, String func, List<TypeTag> typeArgs, List<Uint8List> args) {
  return EntryFunction(ModuleId.fromStr(module), Identifier(func), typeArgs, args);
}