FaqItem constructor

FaqItem({
  1. int? faqId,
  2. String? problemTypeLabel,
  3. int? order,
  4. int? numberOfClick,
  5. String? question,
  6. String? answer,
})

Implementation

FaqItem(
    {this.faqId,
    this.problemTypeLabel,
    this.order,
    this.numberOfClick,
    this.question,
    this.answer});