DeviceInfo class

A class representing a device info object.

This class contains information about the device's firmware version, device type, KSN, and current ele per.

Parameters:

  • firmwareVersion (required): The device's firmware version.
  • deviceType (required): The device's type.
  • ksn (required): The device's KSN.
  • currentElePer (required): The device's current ele per.

Constructors

DeviceInfo({required String firmwareVersion, required String deviceType, required String ksn, required double currentElePer})
Constructs a new DeviceInfo object.
const
DeviceInfo.fromMap(Map map)
Creates a new DeviceInfo object from a map.
factory

Properties

currentElePer double
The device's current ele per.
final
deviceType String
The device's type.
final
firmwareVersion String
The device's firmware version.
final
hashCode int
The hash code for this object.
read-onlyinherited
ksn String
The device's KSN.
final
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited