// To parse this JSON data, do
//
// final article = articleFromJson(jsonString);
import 'dart:convert';
List<Article> articleFromJson(String str) => List<Article>.from(json.decode(str).map((x) => Article.fromJson(x)));
String articleToJson(List<Article> data) => json.encode(List<dynamic>.from(data.map((x) => x.toJson())));
class Article {
String author;
String title;
String description;
String url;
String urlToImage;
String publishedAt;
String content;
Article({
required this.author,
required this.title,
required this.description,
required this.url,
required this.urlToImage,
required this.publishedAt,
required this.content,
});
factory Article.fromJson(Map<String, dynamic> json) => Article(
author: json["author"],
title: json["title"],
description: json["description"],
url: json["url"],
urlToImage: json["urlToImage"],
publishedAt: (json["publishedAt"]),
content: json["content"],
);
Map<String, dynamic> toJson() => {
"author": author,
"title": title,
"description": description,
"url": url,
"urlToImage": urlToImage,
"publishedAt": publishedAt,
"content": content,
};
}
List<Article> parseArticle(String? json){
if (json == null){
return [];
}
final List parsed = jsonDecode(json);
return parsed.map((json) => Article.fromJson(json)).toList();
}