User constructor

User({
  1. String? displayName,
  2. String? emailAddress,
})

Implementation

User({
  this.displayName,
  this.emailAddress,
});