OrganizationSchema constructor

const OrganizationSchema({
  1. required String name,
  2. String? url,
  3. String? description,
  4. String? email,
  5. String? telephone,
  6. List<String>? sameAs,
  7. PostalAddress? address,
  8. ContactPoint? contactPoint,
  9. String? foundingDate,
  10. String? numberOfEmployees,
})

Implementation

const OrganizationSchema({
  required this.name,
  this.url,
  this.logo,
  this.description,
  this.email,
  this.telephone,
  this.sameAs,
  this.address,
  this.contactPoint,
  this.foundingDate,
  this.numberOfEmployees,
});