User constructor

User(
  1. int id,
  2. String name,
  3. String email,
  4. Color color,
)

Implementation

User(this.id, this.name, this.email, this.color);