Parameter constructor
Creates a Parameter instance.
type: The parameter type. See PredefinedParameterTypeValues for possible values. value: The parameter value. name: The translated name according to the current SDK language. unit: The unit of the parameter.
Implementation
Parameter({
required this.type,
required this.value,
required this.name,
required this.unit,
});