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'],
);
Parse from a json
factory PageBlockAuthorDate.fromJson(Map<String, dynamic> json) => PageBlockAuthorDate(
author: RichText.fromJson(json['author']),
publishDate: json['publish_date'],
);