Article constructor

Article(
  1. Source source,
  2. String? author,
  3. String? title,
  4. String? description,
  5. String? url,
  6. String? urlToImage,
  7. String? publishedAt,
  8. String? content,
)

Implementation

Article(
  this.source,
  this.author,
  this.title,
  this.description,
  this.url,
  this.urlToImage,
  this.publishedAt,
  this.content,
);