IndexStatistics.fromJson constructor

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

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>),
  );
}