Blog constructor

Blog(
  1. String title,
  2. String contents,
  3. Uri url,
  4. DateTime datetime,
  5. Uri thumbnail,
  6. String blogName,
)

Implementation

Blog(String title, String contents, Uri url, DateTime datetime, Uri thumbnail,
    this.blogName)
    : super(title, contents, url, datetime, thumbnail);