ArticleAuthor constructor

const ArticleAuthor({
  1. required String name,
  2. String? url,
  3. String? image,
})

Implementation

const ArticleAuthor({required this.name, this.url, this.image});