DeviceInfo constructor

DeviceInfo({
  1. String? id,
  2. String? type,
  3. bool? encrypted,
  4. String? ipAddress,
  5. String? latitude,
  6. String? longitude,
  7. String? macAddress,
  8. String? phoneNumber,
})

Implementation

DeviceInfo({
  this.id, this.type, this.encrypted, this.ipAddress,
  this.latitude, this.longitude, this.macAddress, this.phoneNumber
});