S7ConfigPlc constructor

S7ConfigPlc({
  1. String? pLCId,
  2. String? host,
  3. int? port,
  4. int? rack,
  5. int? slot,
  6. List<S7ConfigData> dataArray = const [],
})

Returns a new S7ConfigPlc instance.

Implementation

S7ConfigPlc({
  this.pLCId,
  this.host,
  this.port,
  this.rack,
  this.slot,
  this.dataArray = const [],
});