SymbolEntity.fromJson constructor
Implementation
factory SymbolEntity.fromJson(Map<String, dynamic> json) => new SymbolEntity(
text: json["text"] == null ? null : json["text"],
indices: json["indices"] == null
? null
: new List<int>.from(json["indices"].map((x) => x)),
);