LinkedInUserModel constructor

LinkedInUserModel({
  1. String? name,
  2. String? familyName,
  3. String? givenName,
  4. String? email,
  5. String? picture,
  6. String? sub,
  7. LinkedInLocale? locale,
  8. LinkedInAccessToken? accessToken,
})

Implementation

LinkedInUserModel({
  this.name,
  this.familyName,
  this.givenName,
  this.email,
  this.picture,
  this.sub,
  this.locale,
  this.accessToken,
});