toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowedValues = this.allowedValues;
final maxValue = this.maxValue;
final minValue = this.minValue;
final name = this.name;
final optional = this.optional;
final parameterType = this.parameterType;
return {
'allowedValues': ?allowedValues,
'maxValue': ?maxValue,
'minValue': ?minValue,
'name': ?name,
'optional': ?optional,
'parameterType': ?parameterType,
};
}