RichBlock.footer constructor
const
RichBlock.footer({
A footer, corresponding to the HTML tag <footer>.
Implementation
const factory RichBlock.footer({
/// Type of the block, always "footer"
@JsonKey(name: 'type') @Default(RichBlockType.footer) RichBlockType type,
/// Text of the block
@JsonKey(name: 'text') @RichTextConverter() required RichText text,
}) = RichBlockFooter;