DeviceData constructor

DeviceData({
  1. required String deviceId,
  2. String? brand,
  3. String? model,
  4. String? systemName,
  5. String? systemVersion,
  6. String? appVersion,
  7. String? buildNumber,
  8. String? packageName,
  9. String? manufacturer,
  10. String? deviceName,
  11. String? deviceType,
  12. int? totalMemory,
  13. int? usedMemory,
  14. bool? isTablet,
  15. String? adId,
  16. String? androidId,
  17. Map<String, dynamic>? network,
  18. LocationData? location,
  19. String? timestamp,
  20. String? timezone,
  21. required String platform,
  22. String? error,
})

Implementation

DeviceData({
  required this.deviceId,
  this.brand,
  this.model,
  this.systemName,
  this.systemVersion,
  this.appVersion,
  this.buildNumber,
  this.packageName,
  this.manufacturer,
  this.deviceName,
  this.deviceType,
  this.totalMemory,
  this.usedMemory,
  this.isTablet,
  this.adId,
  this.androidId,
  this.network,
  this.location,
  this.timestamp,
  this.timezone,
  required this.platform,
  this.error,
});