LocalBusinessSchema constructor

const LocalBusinessSchema({
  1. required String name,
  2. LocalBusinessType? businessType,
  3. String? description,
  4. String? url,
  5. String? image,
  6. String? telephone,
  7. String? email,
  8. PostalAddress? address,
  9. GeoCoordinates? geo,
  10. List<OpeningHours>? openingHours,
  11. String? priceRange,
  12. List<String>? sameAs,
  13. String? menu,
  14. List<String>? servesCuisine,
  15. String? currenciesAccepted,
  16. String? paymentAccepted,
})

Implementation

const LocalBusinessSchema({
  required this.name,
  this.businessType,
  this.description,
  this.url,
  this.image,
  this.telephone,
  this.email,
  this.address,
  this.geo,
  this.openingHours,
  this.priceRange,
  this.sameAs,
  this.menu,
  this.servesCuisine,
  this.currenciesAccepted,
  this.paymentAccepted,
});