getUnBlockUserOption static method

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

Implementation

static CometChatDetailsOption getUnBlockUserOption(BuildContext context,
    {CometChatTheme? theme}) {
  return CometChatDetailsOption(
    id: UserOptionConstants.unblockUser,
    title: Translations.of(context).unblockUser,
    packageName: UIConstants.packageName,
    titleStyle: _getSecondaryGroupOptionTextStyle(theme),
  );
}