StitchUserProfile constructor

StitchUserProfile({
  1. String? name,
  2. String? email,
  3. String? pictureUrl,
  4. String? firstName,
  5. String? lastName,
  6. String? gender,
  7. String? birthday,
  8. String? minAge,
  9. String? maxAge,
})

Implementation

StitchUserProfile({
  this.name,
  this.email,
  this.pictureUrl,
  this.firstName,
  this.lastName,
  this.gender,
  this.birthday,
  this.minAge,
  this.maxAge,
});