UrlEntity.fromJson constructor
Implementation
factory UrlEntity.fromJson(Map<String, dynamic> json) => new UrlEntity(
url: json["url"] == null ? null : json["url"],
expandedUrl: json["expanded_url"] == null ? null : json["expanded_url"],
displayUrl: json["display_url"] == null ? null : json["display_url"],
indices: json["indices"] == null
? null
: new List<int>.from(json["indices"].map((x) => x)),
);