GlobalUser constructor

GlobalUser({
  1. required String uid,
  2. String? displayName,
  3. String? photoURL,
  4. String? phoneNumber,
  5. String? email,
})

Implementation

GlobalUser({
  required this.uid,
  this.displayName,
  this.photoURL,
  this.phoneNumber,
  this.email,
});