getDeleteOption static method

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

Implementation

static CometChatDetailsOption getDeleteOption(BuildContext context,
    {CometChatTheme? theme}) {
  return CometChatDetailsOption(
    id: GroupOptionConstants.delete,
    title: Translations.of(context).deleteAndExit,
    packageName: UIConstants.packageName,
    titleStyle: _getSecondaryGroupOptionTextStyle(theme),
  );
}