SymbolEntity.fromJson constructor

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

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