PageBlockAuthorDate constructor

const PageBlockAuthorDate({
  1. required RichText author,
  2. required int publishDate,
})

The author and publishing date of a page

Implementation

const PageBlockAuthorDate({
  required this.author,
  required this.publishDate,
});