ExternalService constructor

ExternalService({
  1. ExternalServiceEmbedded? embedded,
  2. ExternalServiceLinks? links,
  3. ExternalServicePostalAddress? address,
  4. ExternalServiceContactPoint? contactPoint,
  5. DateTime? createdAt,
  6. String? description,
  7. String? id,
  8. required String name,
  9. ExternalServiceContactPoint? onCall,
  10. String? type,
  11. DateTime? updatedAt,
})

Returns a new ExternalService instance.

Implementation

ExternalService({
  this.embedded,
  this.links,
  this.address,
  this.contactPoint,
  this.createdAt,
  this.description,
  this.id,
  required this.name,
  this.onCall,
  this.type,
  this.updatedAt,
});