Device constructor

Device({
  1. String? identifier,
  2. String? manufacturer,
  3. String? model,
  4. String? networkCarrier,
  5. String? platform,
  6. String? platformVersion,
})

Implementation

Device({
  this.identifier,
  this.manufacturer,
  this.model,
  this.networkCarrier,
  this.platform,
  this.platformVersion,
});