User constructor

User({
  1. String? name,
  2. String? id,
  3. String? email,
  4. String? userName,
})

Implementation

User({
  this.name, this.id, this.email, this.userName
});