DeviceInfo.unknown constructor

DeviceInfo.unknown({
  1. required String language,
  2. required String locale,
  3. String? ipAddress,
  4. GeoPoint? geo,
  5. required bool isSimulator,
})

Implementation

DeviceInfo.unknown(
    {required this.language,
    required this.locale,
    this.ipAddress,
    this.geo,
    required this.isSimulator})
    : deviceBrand = null,
      deviceType = "Unknown",
      deviceModel = null,
      software = null,
      deviceId = 'unknown-device',
      softwareVersion = null;