InternalService constructor

InternalService({
  1. InternalServiceEmbedded? embedded,
  2. InternalServiceLinks? links,
  3. InternalServicePostalAddress? address,
  4. InternalServiceContactPoint? contactPoint,
  5. DateTime? createdAt,
  6. String? description,
  7. String? id,
  8. required String name,
  9. InternalServiceContactPoint? onCall,
  10. String? type,
  11. DateTime? updatedAt,
})

Returns a new InternalService instance.

Implementation

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