UserProvider constructor

UserProvider({
  1. String? uid,
  2. String? displayName,
  3. String? email,
  4. String? phoneNumber,
  5. String? photoURL,
  6. String? providerId,
})

Implementation

UserProvider({
  this.uid,
  this.displayName,
  this.email,
  this.phoneNumber,
  this.photoURL,
  this.providerId,
});