DeviceInfo constructor

const DeviceInfo({
  1. required bool isSimulator,
  2. required String? ipAddress,
  3. required GeoPoint? geo,
  4. required String deviceId,
  5. required String deviceType,
  6. required String? deviceModel,
  7. required String? deviceBrand,
  8. required String? software,
  9. required String locale,
  10. required String language,
  11. required String? softwareVersion,
})

Implementation

const DeviceInfo(
    {required this.isSimulator,
    required this.ipAddress,
    required this.geo,
    required this.deviceId,
    required this.deviceType,
    required this.deviceModel,
    required this.deviceBrand,
    required this.software,
    required this.locale,
    required this.language,
    required this.softwareVersion});