getTitle method

Widget? getTitle(
  1. CometChatTheme theme
)

Implementation

Widget? getTitle(CometChatTheme theme) {
  return Text(
    title ?? "",
    style: style.titleStyle ??
        TextStyle(
            color: theme.palette.getAccent(),
            fontWeight: theme.typography.name.fontWeight,
            fontSize: theme.typography.name.fontSize,
            fontFamily: theme.typography.name.fontFamily),
  );
}