PageBlockAuthorDate.fromJson constructor

PageBlockAuthorDate.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

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