MessageOptionSheet constructor
const
MessageOptionSheet({
- Key? key,
- required BaseMessage messageObject,
- required List<
ActionItem> actionItems, - Color? backgroundColor,
- String? title,
- TextStyle? titleStyle,
- CometChatMessageListController? state,
- dynamic data,
- CometChatTheme? theme,
- List<
String> ? favoriteReactions, - bool? hideReactions = false,
- dynamic onReactionTap(
- BaseMessage message,
- String? reaction
- dynamic onAddReactionIconTap()?,
- Widget? addReactionIcon,
Implementation
const MessageOptionSheet({
super.key,
required this.messageObject,
required this.actionItems,
this.backgroundColor,
this.title,
this.titleStyle,
this.state,
this.data,
this.theme,
this.favoriteReactions,
this.hideReactions = false,
this.onReactionTap,
this.onAddReactionIconTap,
this.addReactionIcon,
});