S7Config constructor

S7Config({
  1. String? messageVersion,
  2. int? timeStamp,
  3. String? iOTId,
  4. String? orgId,
  5. S7ConfigProtocolEnum? protocol,
  6. List<S7ConfigPlc> plcArray = const [],
})

Returns a new S7Config instance.

Implementation

S7Config({
  this.messageVersion,
  this.timeStamp,
  this.iOTId,
  this.orgId,
  this.protocol,
  this.plcArray = const [],
});