Datum constructor

Datum({
  1. String? profileid,
  2. String? profilename,
  3. dynamic pgratting,
  4. dynamic picture,
  5. String? kidsmode,
  6. dynamic gender,
  7. dynamic dob,
  8. dynamic age,
  9. String? profilepin,
  10. String? created,
})

Implementation

Datum({
  this.profileid,
  this.profilename,
  this.pgratting,
  this.picture,
  this.kidsmode,
  this.gender,
  this.dob,
  this.age,
  this.profilepin,
  this.created,
});