UserInfo constructor

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

Implementation

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