fromJson static method
Inherited by: PageBlockAnchor PageBlockAnimation PageBlockAudio PageBlockAuthorDate PageBlockBlockQuote PageBlockChatLink PageBlockCollage PageBlockCover PageBlockDetails PageBlockDivider PageBlockEmbedded PageBlockEmbeddedPost PageBlockFooter PageBlockHeader PageBlockKicker PageBlockList PageBlockMap PageBlockMathematicalExpression PageBlockParagraph PageBlockPhoto PageBlockPreformatted PageBlockPullQuote PageBlockRelatedArticles PageBlockSectionHeading PageBlockSlideshow PageBlockSubheader PageBlockSubtitle PageBlockTable PageBlockThinking PageBlockTitle PageBlockVideo PageBlockVoiceNote
Implementation
static PageBlockMathematicalExpression? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return PageBlockMathematicalExpression(
expression: (json['expression'] as String?) ?? '',
);
}