UserProfile constructor

UserProfile({
  1. String? userId,
  2. required String? email,
  3. String? name,
  4. int? firstNameLen,
  5. int? authenticatedTill,
})

Returns a new UserProfile instance.

Implementation

UserProfile({
  this.userId,
  required this.email,
  this.name,
  this.firstNameLen,
  this.authenticatedTill,
});