TweetStatuses.fromJson constructor

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

Implementation

factory TweetStatuses.fromJson(Map<String, dynamic> json) => TweetStatuses(
      createdAt: json["created_at"],
      idStr: json["id_str"],
      text: json["text"],
      source: json["source"],
      truncated: json["truncated"],
      inReplyToStatusId: json["in_reply_to_status_id"],
      inReplyToStatusIdStr: json["in_reply_to_status_id_str"],
      inReplyToUserId: json["in_reply_to_user_id"],
      inReplyToUserIdStr: json["in_reply_to_user_id_str"],
      inReplyToScreenName: json["in_reply_to_screen_name"],
      geo: json["geo"],
      coordinates: json["coordinates"],
      place: json["place"],
      contributors: json["contributors"],
      isQuoteStatus: json["is_quote_status"],
      quoteCount: json["quote_count"],
      replyCount: json["reply_count"],
      retweetCount: json["retweet_count"],
      favoriteCount: json["favorite_count"],
      favorited: json["favorited"],
      retweeted: json["retweeted"],
      possiblySensitive: json["possibly_sensitive"],
      filterLevel: json["filter_level"],
      lang: json["lang"],
    );