getLastMessageTimeText method
Implementation
String getLastMessageTimeText() {
String text = '';
if (widget.conversation.lastMessage != null) {
if (widget.conversation.lastMessage!.timestamp != null) {
text = TencentCloudChatIntl.formatTimestampToHumanReadable(
widget.conversation.lastMessage!.timestamp!,
context,
);
}
}
return text;
}