FaqStatistics.fromJson constructor

FaqStatistics.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory FaqStatistics.fromJson(Map<String, dynamic> json) {
  return FaqStatistics(
    indexedQuestionAnswersCount: json['IndexedQuestionAnswersCount'] as int,
  );
}