DeviceMetadata constructor

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

Implementation

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