HyperParameterSpecification constructor
HyperParameterSpecification({
- required String name,
- required ParameterType type,
- String? defaultValue,
- String? description,
- bool? isRequired,
- bool? isTunable,
- ParameterRange? range,
Implementation
HyperParameterSpecification({
required this.name,
required this.type,
this.defaultValue,
this.description,
this.isRequired,
this.isTunable,
this.range,
});