DeviceDataDTO constructor

const DeviceDataDTO({
  1. int? id,
  2. String? serialNumber,
  3. String? displayName,
  4. AddressDTO? address,
  5. bool? hasServiceAgreement,
  6. ConnectionTypeDTO? connectionType,
})

Implementation

const DeviceDataDTO({
  this.id,
  this.serialNumber,
  this.displayName,
  this.address,
  this.hasServiceAgreement,
  this.connectionType,
});