LinkedInUserModel constructor

LinkedInUserModel({
  1. LinkedInPersonalInfo? firstName,
  2. LinkedInPersonalInfo? lastName,
  3. LinkedInProfilePicture? profilePicture,
  4. String? userId,
  5. String? localizedFirstName,
  6. String? localizedLastName,
})

Create user model based on response of LinkedIn APIs

Implementation

LinkedInUserModel({
  this.firstName,
  this.lastName,
  this.profilePicture,
  this.userId,
  this.localizedFirstName,
  this.localizedLastName,
});