ModbusTcpConfigPlc constructor

ModbusTcpConfigPlc({
  1. String? pLCId,
  2. String? host,
  3. int? port,
  4. int? unitID,
  5. List<ModbusTcpConfigData> dataArray = const [],
})

Returns a new ModbusTcpConfigPlc instance.

Implementation

ModbusTcpConfigPlc({
  this.pLCId,
  this.host,
  this.port,
  this.unitID,
  this.dataArray = const [],
});