OpcuaConfig constructor

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

Returns a new OpcuaConfig instance.

Implementation

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