createParameter static method

String createParameter(
  1. String parameterName,
  2. String parameterValue
)

A string representing the action of creating a new parameter.

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

Implementation

static String createParameter(String parameterName, String parameterValue) =>
    "<!$parameterName|$parameterValue!>";