Userinfo constructor

Userinfo({
  1. String? email,
  2. String? familyName,
  3. String? gender,
  4. String? givenName,
  5. String? hd,
  6. String? id,
  7. String? link,
  8. String? locale,
  9. String? name,
  10. String? picture,
  11. bool? verifiedEmail,
})

Implementation

Userinfo({
  this.email,
  this.familyName,
  this.gender,
  this.givenName,
  this.hd,
  this.id,
  this.link,
  this.locale,
  this.name,
  this.picture,
  this.verifiedEmail,
});