MediaEntity.fromJson constructor

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

Implementation

factory MediaEntity.fromJson(Map<String, dynamic> json) => new MediaEntity(
      id: json["id"] == null ? null : json["id"].toDouble(),
      mediaUrlHttps:
          json["media_url_https"] == null ? null : json["media_url_https"],
      url: json["url"] == null ? null : json["url"],
      displayUrl: json["display_url"] == null ? null : json["display_url"],
      expandedUrl: json["expanded_url"] == null ? null : json["expanded_url"],
      type: json["type"] == null ? null : json["type"],
      sizes: json["sizes"] == null ? null : Sizes.fromJson(json["sizes"]),
      videoInfo: json["video_info"] == null
          ? null
          : VideoInfo.fromJson(json["video_info"]),
      indices: json["indices"] == null
          ? null
          : new List<int>.from(json["indices"].map((x) => x)),
    );