getLeaveOption static method

CometChatDetailsOption getLeaveOption(
  1. BuildContext context, {
  2. CometChatTheme? theme,
})

Implementation

static CometChatDetailsOption getLeaveOption(BuildContext context,
    {CometChatTheme? theme}) {
  return CometChatDetailsOption(
    id: GroupOptionConstants.leave,
    title: Translations.of(context).leaveGroup,
    titleStyle: _getSecondaryGroupOptionTextStyle(theme),
  );
}