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