show article heading

Closes #1338

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-09-27 19:56:08 +08:00
parent 7fedfb8963
commit 2333736a72
2 changed files with 90 additions and 67 deletions

View File

@@ -11,6 +11,7 @@ class ArticleContentModel {
LinkCard? linkCard;
Code? code;
L1st? list;
Text? heading;
ArticleContentModel.fromJson(Map<String, dynamic> json) {
align = json['align'];
@@ -24,6 +25,7 @@ class ArticleContentModel {
: LinkCard.fromJson(json['link_card']);
code = json['code'] == null ? null : Code.fromJson(json['code']);
list = json['list'] == null ? null : L1st.fromJson(json['list']);
heading = json['heading'] == null ? null : Text.fromJson(json['heading']);
}
}