Contact constructor

Contact({
  1. String? firstname,
  2. String? lastname,
  3. String? company,
  4. String? phone,
  5. String? email,
})

Constructor allows filling all possible properties

Implementation

Contact(
    {this.firstname, this.lastname, this.company, this.phone, this.email});