Contact constructor

Contact({
  1. String? description,
  2. String? emailAddress,
  3. String? phoneNumber,
  4. required ContactType type,
})

Implementation

factory Contact({
  String? description,
  String? emailAddress,
  String? phoneNumber,
  required ContactType type,
}) = _Contact;