DeviceInfo constructor
DeviceInfo({})
Constructs an instance of DeviceInfo.
Parameters:
deviceName
: The name of the device.deviceModel
: The model of the device.operatingSystem
: The operating system of the device.systemVersion
: The system version of the device.
Implementation
DeviceInfo({
required this.deviceName,
required this.deviceModel,
required this.operatingSystem,
required this.systemVersion,
required this.deviceUuid,
});