DeviceInfo constructor

DeviceInfo({
  1. required String deviceName,
  2. required String deviceModel,
  3. required String operatingSystem,
  4. required String systemVersion,
  5. required String deviceUuid,
})

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,
});