DeviceTypeDto constructor

DeviceTypeDto({
  1. String? code,
  2. SamTextDto? name,
  3. String? edqmCode,
  4. String? edqmDefinition,
})

Returns a new DeviceTypeDto instance.

Implementation

DeviceTypeDto({
  this.code,
  this.name,
  this.edqmCode,
  this.edqmDefinition,
});