phase3: nullfix arg-bang handler (argument_type/invalid_assignment). 872 -> 621
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user