name property

String? name

The name of the Variable associated with this Param.

Implementation

String? get name => variable.name;
void name=(String? name)

Set the name of the Variable associated with this Param.

Implementation

set name(String? name) {
  variable.name = name;
}