InstancePropertySpec constructor

InstancePropertySpec({
  1. required int iid,
  2. required MIoTSpecType type,
  3. required String description,
  4. required String format,
  5. required Set<String> access,
  6. List<InstancePropertyValueEnum>? values,
  7. InstancePropertyValueRange? range,
})

Implementation

InstancePropertySpec({
  required this.iid,
  required this.type,
  required this.description,
  required this.format,
  required this.access,
  this.values,
  this.range,
});