InternalServiceDataContactPoint constructor

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

Returns a new InternalServiceDataContactPoint instance.

Implementation

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