Person constructor

Person({
  1. String? name,
  2. Email? email,
  3. Link? link,
})

Construct a new Person object.

Implementation

Person({this.name, this.email, this.link});