Organization constructor

Organization({
  1. OrganizationLinks? links,
  2. OrganizationPostalAddress? address,
  3. String? alternateName,
  4. bool? archived,
  5. DateTime? createdAt,
  6. String? description,
  7. bool? enabled,
  8. DateTime? endDate,
  9. String? id,
  10. required String name,
  11. OrganizationPreferences? preferences,
  12. DateTime? startDate,
  13. String? type,
  14. DateTime? updatedAt,
})

Returns a new Organization instance.

Implementation

Organization({
  this.links,
  this.address,
  this.alternateName,
  this.archived,
  this.createdAt,
  this.description,
  this.enabled,
  this.endDate,
  this.id,
  required this.name,
  this.preferences,
  this.startDate,
  this.type,
  this.updatedAt,
});