EIDItem constructor

EIDItem({
  1. String? deviceType,
  2. int? readDate,
  3. int readHour = 0,
  4. String? readType,
  5. String? readvalue,
})

Returns a new EIDItem instance.

Implementation

EIDItem({
  this.deviceType,
  this.readDate,
  this.readHour = 0,
  this.readType,
  this.readvalue,
});