GoogleUser constructor

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

Implementation

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