DeviceInformationRecord constructor

DeviceInformationRecord({
  1. String? vendorName,
  2. String? modelName,
  3. String? uniqueName,
  4. String? uuid,
  5. String? versionString,
  6. List<DataElement>? undefinedData,
})

Implementation

DeviceInformationRecord(
    {String? vendorName,
    String? modelName,
    String? uniqueName,
    String? uuid,
    String? versionString,
    List<DataElement>? undefinedData}) {
  this.vendorName = vendorName;
  this.modelName = modelName;
  this.uniqueName = uniqueName;
  if (uuid != null) {
    this.uuid = uuid;
  }
  this.versionString = versionString;
  this.undefinedData = undefinedData == null ? [] : undefinedData;
}