IndexStatistics.fromJson constructor
Implementation
factory IndexStatistics.fromJson(Map<String, dynamic> json) {
return IndexStatistics(
faqStatistics:
FaqStatistics.fromJson(json['FaqStatistics'] as Map<String, dynamic>),
textDocumentStatistics: TextDocumentStatistics.fromJson(
json['TextDocumentStatistics'] as Map<String, dynamic>),
);
}