getStatus method

Widget getStatus(
  1. CometChatTheme theme
)

Implementation

Widget getStatus(CometChatTheme theme) {
  return CometChatStatusIndicator(
    backgroundImage: statusIndicatorIcon,
    backgroundColor: statusIndicatorColor,
    style: StatusIndicatorStyle(
        border: statusIndicatorStyle.border,
        borderRadius: statusIndicatorStyle.borderRadius,
        height: statusIndicatorStyle.height,
        width: statusIndicatorStyle.width,
        gradient: statusIndicatorStyle.gradient),
  );
}