PageBlockAuthorDate.fromJson constructor
Parse from a json
Implementation
factory PageBlockAuthorDate.fromJson(Map<String, dynamic> json) =>
PageBlockAuthorDate(
author: RichText.fromJson(json['author']),
publishDate: json['publish_date'],
);