fromJson static method
Inherited by: InputPageBlockAnchor InputPageBlockAnimation InputPageBlockAudio InputPageBlockBlockQuote InputPageBlockCollage InputPageBlockDetails InputPageBlockDivider InputPageBlockFooter InputPageBlockList InputPageBlockMap InputPageBlockMathematicalExpression InputPageBlockParagraph InputPageBlockPhoto InputPageBlockPreformatted InputPageBlockPullQuote InputPageBlockSectionHeading InputPageBlockSlideshow InputPageBlockTable InputPageBlockThinking InputPageBlockVideo InputPageBlockVoiceNote
Implementation
static InputPageBlockAnimation? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return InputPageBlockAnimation(
animation: InputAnimation.fromJson(tdMapFromJson(json['animation'])),
caption: PageBlockCaption.fromJson(tdMapFromJson(json['caption'])),
hasSpoiler: (json['has_spoiler'] as bool?) ?? false,
);
}