parameter static method

String parameter(
  1. String parameterName
)

A referrence to a parameter.

Parameters are variables that can be referred to anywhere in the bot. They can be either a string or a number.

This doesn't create a new parameter nor check if the parameter exists. If the parameter doesn't exist, this action will be ignored in runtime.

Implementation

static String parameter(String parameterName) => "<<$parameterName>>";