PageBlockParagraph.fromJson constructor

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

Parse from a json

Implementation

factory PageBlockParagraph.fromJson(Map<String, dynamic> json) =>
    PageBlockParagraph(
      text: RichText.fromJson(json['text']),
    );