InfoDevice constructor

InfoDevice({
  1. String? platform,
  2. String? model,
  3. String? name,
  4. String? manufacturer,
  5. String? brand,
  6. String? device,
  7. String? hardware,
  8. String? systemName,
  9. String? systemVersion,
  10. String? osVersion,
  11. int? sdkInt,
  12. String? locale,
  13. String? timezone,
  14. bool isEmulator = false,
})

Creates a new InfoDevice instance.

Implementation

InfoDevice({
  this.platform,
  this.model,
  this.name,
  this.manufacturer,
  this.brand,
  this.device,
  this.hardware,
  this.systemName,
  this.systemVersion,
  this.osVersion,
  this.sdkInt,
  this.locale,
  this.timezone,
  this.isEmulator = false,
});