Info constructor

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

Implementation

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