DeviceData constructor
DeviceData({
- required String deviceId,
- String? brand,
- String? model,
- String? systemName,
- String? systemVersion,
- String? appVersion,
- String? buildNumber,
- String? packageName,
- String? manufacturer,
- String? deviceName,
- String? deviceType,
- int? totalMemory,
- int? usedMemory,
- bool? isTablet,
- String? adId,
- String? androidId,
- Map<
String, dynamic> ? network, - LocationData? location,
- String? timestamp,
- String? timezone,
- required String platform,
- 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,
});