AuthProfile constructor

AuthProfile({
  1. required String userId,
  2. String? email,
  3. String? name,
  4. String? pictureUrl,
})

Implementation

AuthProfile({
  required this.userId,
  this.email,
  this.name,
  this.pictureUrl,
});