ModbusSerialConnectionDTO constructor

const ModbusSerialConnectionDTO({
  1. String? name,
  2. int? baudRate,
  3. ParityDTO? parity,
  4. int? dataBits,
  5. StopBitsDTO? stopBits,
  6. int? unitId,
  7. String? propertySpec,
})

Implementation

const ModbusSerialConnectionDTO({
  this.name,
  this.baudRate,
  this.parity,
  this.dataBits,
  this.stopBits,
  this.unitId,
  this.propertySpec,
});