added const

This commit is contained in:
Deven Joshi
2021-07-28 13:14:10 +05:30
parent 2f3e42f18f
commit 3676468be3
2 changed files with 2 additions and 2 deletions
@@ -137,7 +137,7 @@ class _ChannelPageState extends State<ChannelPage> {
);
},
deletedBottomRowBuilder: (context, message) {
return VisibleFootnote();
return const VisibleFootnote();
},
);
},
+1 -1
View File
@@ -54,7 +54,7 @@ class _ThreadPageState extends State<ThreadPage> {
return defaultMessage.copyWith(
onReplyTap: _reply,
deletedBottomRowBuilder: (context, message) {
return VisibleFootnote();
return const VisibleFootnote();
},
);
},