UserViewModel constructor

UserViewModel({
  1. String? id,
  2. String? name,
  3. String? bio,
  4. String? city,
  5. String? givenName,
  6. String? familyName,
  7. String? profilePictureUrl,
})

Implementation

UserViewModel({
  this.id,
  this.name,
  this.bio,
  this.city,
  this.givenName,
  this.familyName,
  this.profilePictureUrl,
});