User constructor

User(
  1. String name,
  2. int? age,
  3. Address address
)

Implementation

User(this.name, this.age, this.address);