FacebookUserProfile constructor

FacebookUserProfile({
  1. String? id,
  2. String? name,
  3. String? firstName,
  4. String? lastName,
  5. String? email,
  6. String? middleName,
  7. String? nameFormat,
  8. FacebookPictureData? picture,
  9. String? shortName,
})

Default constructor.

Implementation

FacebookUserProfile({
  this.id,
  this.name,
  this.firstName,
  this.lastName,
  this.email,
  this.middleName,
  this.nameFormat,
  this.picture,
  this.shortName,
});