pageBlockAuthorDate property

PageBlockAuthorDate? pageBlockAuthorDate

The author and publishing date of a page

Implementation

PageBlockAuthorDate? get pageBlockAuthorDate {
  if (this is PageBlockAuthorDate) {
    return this as PageBlockAuthorDate;
  }
  return null;
}