ExternalServiceContactPoint constructor

ExternalServiceContactPoint({
  1. String? description,
  2. String? email,
  3. String? familyName,
  4. String? faxNumber,
  5. String? givenName,
  6. bool? isOpen,
  7. String? name,
  8. String? telephone,
})

Returns a new ExternalServiceContactPoint instance.

Implementation

ExternalServiceContactPoint({
  this.description,
  this.email,
  this.familyName,
  this.faxNumber,
  this.givenName,
  this.isOpen,
  this.name,
  this.telephone,
});