ApplicationContactPoint constructor

ApplicationContactPoint({
  1. String? email,
  2. String? id,
  3. String? name,
  4. String? telephone,
  5. String? type,
})

Returns a new ApplicationContactPoint instance.

Implementation

ApplicationContactPoint({
  this.email,
  this.id,
  this.name,
  this.telephone,
  this.type,
});