ContactPoint constructor

const ContactPoint({
  1. required String telephone,
  2. required String contactType,
  3. List<String>? areaServed,
  4. List<String>? availableLanguage,
  5. String? email,
})

Implementation

const ContactPoint({
  required this.telephone,
  required this.contactType,
  this.areaServed,
  this.availableLanguage,
  this.email,
});