phase3: nullfix arg-bang handler (argument_type/invalid_assignment). 872 -> 621

This commit is contained in:
2026-07-25 18:16:40 +08:00
parent c21ccbd54d
commit a76b872966
65 changed files with 282 additions and 257 deletions

View File

@@ -165,7 +165,7 @@ class MobileBlogState extends State<MobileBlog> {
children: <Widget>[
Container(
child: Text(
blog.title,
blog.title!,
style: TextStyle(
fontSize: 19.0,
),
@@ -174,7 +174,7 @@ class MobileBlogState extends State<MobileBlog> {
),
Container(
child: Text(
Utils.utcDatetimeStringToLocalDatetimeString(context, blog.createdAt),
Utils.utcDatetimeStringToLocalDatetimeString(context, blog.createdAt!),
style: TextStyle(
fontSize: 13.0,
color: Colors.grey,
@@ -217,7 +217,7 @@ class MobileBlogState extends State<MobileBlog> {
_loadingFinish = false;
HttpUtil.httpGet(
'v1/blogs',
businessId: widget.businessId,
businessId: widget.businessId!,
queryParameters: {
'page': _page.toString(),
'size': Constants.BLOG_PER_PAGE_MOBILE.toString()