UserInfo constructor

UserInfo({
  1. String? displayName,
  2. String? email,
})

Implementation

UserInfo({
  this.displayName,
  this.email,
});