TextDocumentStatistics.fromJson constructor
Implementation
factory TextDocumentStatistics.fromJson(Map<String, dynamic> json) {
return TextDocumentStatistics(
indexedTextBytes: json['IndexedTextBytes'] as int,
indexedTextDocumentsCount: json['IndexedTextDocumentsCount'] as int,
);
}