variableName property
String
get
variableName
The name of the variable in the parameter list of the containing function. Used when generating code for the interpolation.
Implementation
String get variableName => _variableName == null
? (index == null
? _variableName = _variableNameUpper
: _variableName = arguments[index])
: _variableName;