HyperParameterSpecification constructor

HyperParameterSpecification({
  1. required String name,
  2. required ParameterType type,
  3. String? defaultValue,
  4. String? description,
  5. bool? isRequired,
  6. bool? isTunable,
  7. ParameterRange? range,
})

Implementation

HyperParameterSpecification({
  required this.name,
  required this.type,
  this.defaultValue,
  this.description,
  this.isRequired,
  this.isTunable,
  this.range,
});