buildMessageContent method
Implementation
@override
Widget buildMessageContent(BuildContext context, String? refName) {
String operationString = "";
operationString = "$refName 撤回了一条消息";
return Text(
operationString,
style: TextStyle(
color: RCKThemeProvider().themeColor.textSecondary,
fontSize: 12,
fontWeight: FontWeight.w400,
),
);
}