ContactInfo constructor

const ContactInfo({
  1. List<Address> addresses = const <Address>[],
  2. List<Email> emails = const <Email>[],
  3. PersonName? name,
  4. String? organization,
  5. List<Phone> phones = const <Phone>[],
  6. String? title,
  7. List<String> urls = const <String>[],
})

Create a new ContactInfo instance.

Implementation

const ContactInfo({
  this.addresses = const <Address>[],
  this.emails = const <Email>[],
  this.name,
  this.organization,
  this.phones = const <Phone>[],
  this.title,
  this.urls = const <String>[],
});