DeviceIdentity constructor

DeviceIdentity({
  1. required String deviceId,
  2. String? platformId,
  3. String? model,
  4. String? modelId,
  5. String? osVersion,
  6. required String platform,
})

Implementation

DeviceIdentity({
  required this.deviceId,
  this.platformId,
  this.model,
  this.modelId,
  this.osVersion,
  required this.platform,
});