DataClass constructor

DataClass({
  1. String godsEyeID = '',
  2. String latitude = '',
  3. String longitude = '',
  4. String altitude = '',
  5. String deviceOS = '',
  6. String deviceModel = '',
  7. String deviceID = '',
  8. int numOfTimesOpened = 0,
  9. int timeSpend = 0,
  10. String feedback = '',
})

Implementation

DataClass({
  this.godsEyeID = '',
  this.latitude = '',
  this.longitude = '',
  this.altitude = '',
  this.deviceOS = '',
  this.deviceModel = '',
  this.deviceID = '',
  this.numOfTimesOpened = 0,
  this.timeSpend = 0,
  this.feedback = '',
});