User constructor

User({
  1. String? uid,
  2. String? displayName,
  3. String? phoneNumber,
  4. String? email,
  5. String? photoURL,
  6. String? role,
  7. String? state,
  8. bool? disabled,
})

Implementation

User({
  this.uid,
  this.displayName,
  this.phoneNumber,
  this.email,
  this.photoURL,
  this.role,
  this.state,
  this.disabled,
});