getFormMessageOptions method
List<CometChatMessageOption>
getFormMessageOptions(
- User loggedInUser,
- BaseMessage messageObject,
- BuildContext context,
- Group? group,
override
override this to show options for messages of type MessageTypeConstants.form
Implementation
@override
List<CometChatMessageOption> getFormMessageOptions(User loggedInUser,
BaseMessage messageObject, BuildContext context, Group? group) {
List<CometChatMessageOption> messageOptionList = [];
messageOptionList.addAll(CometChatUIKit.getDataSource()
.getCommonOptions(loggedInUser, messageObject, context, group));
return messageOptionList;
}