DeviceDetails constructor

DeviceDetails({
  1. required String device,
  2. required String os,
  3. required String screenResolution,
  4. required String networkType,
  5. required String? batteryLevel,
})

Implementation

DeviceDetails({
  required this.device,
  required this.os,
  required this.screenResolution,
  required this.networkType,
  required this.batteryLevel,
});