toActionItem method
toActionItem converts CometChatMessageOption to ActionItem
Implementation
ActionItem toActionItem() {
return ActionItem(
id: id,
title: title,
icon: icon,
onItemClick: onItemClick,
style: CometChatAttachmentOptionSheetStyle(
titleTextStyle: messageOptionSheetStyle?.titleTextStyle,
iconColor: messageOptionSheetStyle?.iconColor,
backgroundColor: messageOptionSheetStyle?.backgroundColor,
border: messageOptionSheetStyle?.border,
borderRadius: messageOptionSheetStyle?.borderRadius,
titleColor: messageOptionSheetStyle?.titleColor,
),
);
}