IosDeviceInfo constructor

const IosDeviceInfo({
  1. String? name,
  2. String? systemName,
  3. String? systemVersion,
  4. String? model,
  5. String? localizedModel,
  6. String? identifierForVendor,
  7. required bool isPhysicalDevice,
  8. required IosUtsname utsname,
})

IOS device info class.

Implementation

const IosDeviceInfo({
  this.name,
  this.systemName,
  this.systemVersion,
  this.model,
  this.localizedModel,
  this.identifierForVendor,
  required this.isPhysicalDevice,
  required this.utsname,
});