LinkedInUser class abstract

Base class representing a LinkedIn user's profile information.

This abstract class contains the basic user information returned from the LinkedIn API, including name, email, and profile picture.

Implementers

Constructors

LinkedInUser({required String? name, required String? familyName, required String? givenName, required bool? isEmailVerified, required String? sub, required String? email, required String? picture, required LinkedInPreferredLocal? locale})
const

Properties

email String?
The user's email address.
final
familyName String?
The user's family name (last name).
final
givenName String?
The user's given name (first name).
final
hashCode int
The hash code for this object.
no setterinherited
isEmailVerified bool?
Whether the user's email address has been verified by LinkedIn.
final
locale LinkedInPreferredLocal?
The user's preferred locale settings.
final
name String?
The user's full name.
final
picture String?
URL to the user's profile picture.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sub String?
The unique identifier (subject) for the user.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited