HubParameterDefinition constructor

const HubParameterDefinition({
  1. int? parameterId,
  2. String? name,
  3. int? subgroupId,
  4. CborDataType? dataType,
  5. int? enumId,
  6. AccessLevel? homeownerAccess,
  7. AccessLevel? dealerAccess,
  8. double? defaultValue,
  9. double? minValue,
  10. double? maxValue,
  11. String? unit,
  12. double? changeStep,
  13. dynamic filteringThreshold,
})

Implementation

const HubParameterDefinition({
  this.parameterId,
  this.name,
  this.subgroupId,
  this.dataType,
  this.enumId,
  this.homeownerAccess,
  this.dealerAccess,
  this.defaultValue,
  this.minValue,
  this.maxValue,
  this.unit,
  this.changeStep,
  this.filteringThreshold,
});